Skip to content

Commit 63db6b4

Browse files
committed
No jQuery
- jQuery is not necessary - Fixed target in links with sub-elements
1 parent 7b75ea5 commit 63db6b4

22 files changed

+481
-347
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
*.class
22
example/*.bat
3+
olds/*

README.html

+20-14
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,7 @@
10151015
}
10161016
}
10171017
</style><title>README</title></head><body><article class="markdown-body"><h2 id="automatic-pjax"><a name="user-content-automatic-pjax" href="#automatic-pjax" class="headeranchor-link" aria-hidden="true"><span class="headeranchor"></span></a>Automatic Pjax</h2>
1018-
<p>The <code>auto-pjax.js</code> is a jQuery plugin that uses ajax, <code>pushState</code> and automatically detects links and forms, for configure page you need use <code>id="pjax-container"</code> in all pages, example:</p>
1018+
<p>The <code>Pjax.js</code> is <s>a jQuery plugin</s> script that uses ajax, <code>pushState</code> and automatically detects links and forms, for configure page you need use <code>id="pjax-container"</code> in all pages, example:</p>
10191019
<pre><code class="html">&lt;div id=&quot;pjax-container&quot;&gt;
10201020
...
10211021
&lt;/div&gt;
@@ -1038,11 +1038,11 @@ <h2 id="support"><a name="user-content-support" href="#support" class="headeranc
10381038
</ul>
10391039
<h2 id="usage"><a name="user-content-usage" href="#usage" class="headeranchor-link" aria-hidden="true"><span class="headeranchor"></span></a>Usage</h2>
10401040
<p>For use:</p>
1041-
<pre><code class="js">$.autoPjax();
1041+
<pre><code class="js">Pjax.start();
10421042
</code></pre>
10431043

10441044
<p>For change configs use like this:</p>
1045-
<pre><code class="js">$.autoPjax({
1045+
<pre><code class="js">Pjax.start({
10461046
containers: [ &quot;#my-container&quot; ], //Change container element
10471047
scrollLeft: -1, //Disable autoscroll
10481048
scrollTop: -1 //Disable autoscroll
@@ -1067,6 +1067,12 @@ <h2 id="pjax-configs"><a name="user-content-pjax-configs" href="#pjax-configs" c
10671067
<td>Informs which elements to update on the page</td>
10681068
</tr>
10691069
<tr>
1070+
<td><code>updatecurrent:</code></td>
1071+
<td><code>bool</code></td>
1072+
<td><code>false</code></td>
1073+
<td></td>
1074+
</tr>
1075+
<tr>
10701076
<td><code>updatehead:</code></td>
10711077
<td><code>bool</code></td>
10721078
<td><code>true</code></td>
@@ -1138,7 +1144,7 @@ <h2 id="update-two-elements-or-more"><a name="user-content-update-two-elements-o
11381144
...
11391145
&lt;/div&gt;
11401146
&lt;script&gt;
1141-
$.autoPjax({
1147+
Pjax.start({
11421148
containers: [ &quot;#navbar&quot;, &quot;#my-container&quot; ] //Change containers element
11431149
});
11441150
&lt;/script&gt;
@@ -1154,23 +1160,23 @@ <h2 id="pjax-api"><a name="user-content-pjax-api" href="#pjax-api" class="header
11541160
</thead>
11551161
<tbody>
11561162
<tr>
1157-
<td><code>$.autoPjax("remove");</code></td>
1163+
<td><code>Pjax.remove("remove");</code></td>
11581164
<td>Remove PJAX requests and events</td>
11591165
</tr>
11601166
<tr>
1161-
<td><code>$(document).on("pjax.initiate", function(event, url, config) {...});</code></td>
1167+
<td><code>Pjax.on("initiate", function(event, url, config) {...});</code></td>
11621168
<td>Trigged when clicked in a link or submit a form</td>
11631169
</tr>
11641170
<tr>
1165-
<td><code>$(document).on("pjax.done", function(event, url) {...});</code></td>
1171+
<td><code>Pjax.on("done", function(event, url) {...});</code></td>
11661172
<td>Trigged when page loaded using <code>$.jax</code></td>
11671173
</tr>
11681174
<tr>
1169-
<td><code>$(document).on("pjax.fail", function(event, url, status, error) {...});</code></td>
1175+
<td><code>Pjax.on("fail", function(event, url, status, error) {...});</code></td>
11701176
<td>Trigged when page failed to load, <code>status</code> return HTTP code and <code>error</code> return message error</td>
11711177
</tr>
11721178
<tr>
1173-
<td><code>$(document).on("pjax.then", function(event, url) {...});</code></td>
1179+
<td><code>Pjax.on("then", function(event, url) {...});</code></td>
11741180
<td>Executes every time a request is completed, even if it fails or succeeds.</td>
11751181
</tr>
11761182
</tbody>
@@ -1187,9 +1193,9 @@ <h2 id="pjax-api"><a name="user-content-pjax-api" href="#pjax-api" class="header
11871193
&lt;/div&gt;
11881194
&lt;/div&gt;
11891195
&lt;script&gt;
1190-
$.autoPjax();
1196+
Pjax.start();
11911197

1192-
$(document).on(&quot;pjax.initiate&quot;, function (e, url, configs) {
1198+
Pjax.on(&quot;initiate&quot;, function (e, url, configs) {
11931199
if (url.indexOf(&quot;/search/&quot;) === 0 &amp;&amp; window.location.href.indexOf(&quot;/search/&quot;) === 0) {
11941200
configs.containers = [ &quot;#search-container&quot; ];
11951201
}
@@ -1237,17 +1243,17 @@ <h2 id="custom-loader-with-pjax"><a name="user-content-custom-loader-with-pjax"
12371243
</code></pre>
12381244

12391245
<p>If you need custom &ldquo;more&rdquo;, first remove default loader:</p>
1240-
<pre><code class="javascript">$.autoPjax({
1246+
<pre><code class="javascript">Pjax.start({
12411247
&quot;loader&quot;: false
12421248
});
12431249
</code></pre>
12441250

12451251
<p>And after use <code>pjax.initiate</code> and <code>pjax.then</code> events:</p>
1246-
<pre><code class="javascript">$(document).on(&quot;pjax.initiate&quot;, function () {
1252+
<pre><code class="javascript">Pjax.on(&quot;initiate&quot;, function () {
12471253
$(&quot;.my-custom-loader&quot;).css(&quot;display&quot;, &quot;block&quot;);
12481254
});
12491255

1250-
$(document).on(&quot;pjax.then&quot;, function () {
1256+
Pjax.on(&quot;then&quot;, function () {
12511257
$(&quot;.my-custom-loader&quot;).css(&quot;display&quot;, &quot;none&quot;);
12521258
});
12531259
</code></pre>

README.md

+15-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Automatic Pjax
22

3-
The `auto-pjax.js` is a jQuery plugin that uses ajax, `pushState` and automatically detects links and forms, for configure page you need use `id="pjax-container"` in all pages, example:
3+
The `Pjax.js` is <s>a jQuery plugin</s> script that uses ajax, `pushState` and automatically detects links and forms, for configure page you need use `id="pjax-container"` in all pages, example:
44

55
```html
66
<div id="pjax-container">
@@ -32,13 +32,13 @@ Requirements:
3232
For use:
3333

3434
```js
35-
$.autoPjax();
35+
Pjax.start();
3636
```
3737

3838
For change configs use like this:
3939

4040
```js
41-
$.autoPjax({
41+
Pjax.start({
4242
containers: [ "#my-container" ], //Change container element
4343
scrollLeft: -1, //Disable autoscroll
4444
scrollTop: -1 //Disable autoscroll
@@ -50,6 +50,7 @@ $.autoPjax({
5050
Property | type | default | Description
5151
--- | --- | --- | ---
5252
`containers:` | `array` | `[ "#pjax-container" ]` | Informs which elements to update on the page
53+
`updatecurrent:` | `bool` | `false` |
5354
`updatehead:` | `bool` | `true` | The "autopjax" has an intelligent update system that helps avoid the "blink" effect, because instead of updating everything it only updates what has been changed, however if you are sure that nothing will change as you page, you can set it to false ", The only one that will continue to be updated will be the `<title>` tag.
5455
`scrollLeft:` | `number` | `0` | After loading a page via PJAX you can define where scrollLeft should scroll.
5556
`scrollTop:` | `number` | `0` | After loading a page via PJAX you can define where scrollTop should scroll.
@@ -77,7 +78,7 @@ You can change the element you want to update or even add more elements, eg.:
7778
...
7879
</div>
7980
<script>
80-
$.autoPjax({
81+
Pjax.start({
8182
containers: [ "#navbar", "#my-container" ] //Change containers element
8283
});
8384
</script>
@@ -87,11 +88,11 @@ $.autoPjax({
8788

8889
Method | Description
8990
--- | ---
90-
`$.autoPjax("remove");` | Remove PJAX requests and events
91-
`$(document).on("pjax.initiate", function(event, url, config) {...});` | Trigged when clicked in a link or submit a form
92-
`$(document).on("pjax.done", function(event, url) {...});` | Trigged when page loaded using `$.jax`
93-
`$(document).on("pjax.fail", function(event, url, status, error) {...});` | Trigged when page failed to load, `status` return HTTP code and `error` return message error
94-
`$(document).on("pjax.then", function(event, url) {...});` | Executes every time a request is completed, even if it fails or succeeds.
91+
`Pjax.remove("remove");` | Remove PJAX requests and events
92+
`Pjax.on("initiate", function(event, url, config) {...});` | Trigged when clicked in a link or submit a form
93+
`Pjax.on("done", function(event, url) {...});` | Trigged when page loaded using `$.jax`
94+
`Pjax.on("fail", function(event, url, status, error) {...});` | Trigged when page failed to load, `status` return HTTP code and `error` return message error
95+
`Pjax.on("then", function(event, url) {...});` | Executes every time a request is completed, even if it fails or succeeds.
9596

9697
You can change configs in `pjax.initiate` event, example:
9798

@@ -107,9 +108,9 @@ You can change configs in `pjax.initiate` event, example:
107108
</div>
108109
</div>
109110
<script>
110-
$.autoPjax();
111+
Pjax.start();
111112
112-
$(document).on("pjax.initiate", function (e, url, configs) {
113+
Pjax.on("initiate", function (e, url, configs) {
113114
if (url.indexOf("/search/") === 0 && window.location.href.indexOf("/search/") === 0) {
114115
configs.containers = [ "#search-container" ];
115116
}
@@ -151,19 +152,19 @@ You can custom CSS, example change color and size, put in new CSS file or `<styl
151152
If you need custom "more", first remove default loader:
152153

153154
```javascript
154-
$.autoPjax({
155+
Pjax.start({
155156
"loader": false
156157
});
157158
```
158159

159160
And after use `pjax.initiate` and `pjax.then` events:
160161

161162
```javascript
162-
$(document).on("pjax.initiate", function () {
163+
Pjax.on("initiate", function () {
163164
$(".my-custom-loader").css("display", "block");
164165
});
165166

166-
$(document).on("pjax.then", function () {
167+
Pjax.on("then", function () {
167168
$(".my-custom-loader").css("display", "none");
168169
});
169170
```

0 commit comments

Comments
 (0)