|
1 | 1 | <?xml version="1.0"?> |
2 | 2 | <categories> |
3 | 3 | <category name="Ajax" slug="ajax"> |
4 | | - <desc><![CDATA[The jQuery library has a full suite of AJAX capabilities. The functions and methods therein allow us to load data from the server without a browser page refresh. ]]></desc> |
| 4 | + <desc><![CDATA[The jQuery library has a full suite of Ajax capabilities. The functions and methods therein allow us to load data from the server without a browser page refresh. ]]></desc> |
5 | 5 | <category name="Global Ajax Event Handlers" slug="global-ajax-event-handlers"> |
6 | | - <desc><![CDATA[These methods register handlers to be called when certain events, such as initialization or completion, take place for any AJAX request on the page. The global events are fired on each AJAX request if the <code>global</code> property in <a href="http://api.jquery.com/jQuery.ajaxSetup/"><code>jQuery.ajaxSetup()</code></a> is <code>true</code>, which it is by default. <em>Note: Global events are never fired for cross-domain script or JSONP requests, regardless of the value of <code>global</code>.</em>]]></desc> |
| 6 | + <desc><![CDATA[These methods register handlers to be called when certain events, such as initialization or completion, take place for any Ajax request on the page. The global events are fired on each Ajax request if the <code>global</code> property in <a href="/jQuery.ajaxSetup/"><code>jQuery.ajaxSetup()</code></a> is <code>true</code>, which it is by default. <em>Note: Global events are never fired for cross-domain script or JSONP requests, regardless of the value of <code>global</code>.</em>]]></desc> |
7 | 7 | </category> |
8 | 8 | <category name="Helper Functions" slug="helper-functions"> |
9 | | - <desc><![CDATA[These functions assist with common idioms encountered when performing AJAX tasks.]]></desc> |
| 9 | + <desc><![CDATA[These functions assist with common idioms encountered when performing Ajax tasks.]]></desc> |
10 | 10 | </category> |
11 | 11 | <category name="Low-Level Interface" slug="low-level-interface"> |
12 | | - <desc><![CDATA[These methods can be used to make arbitrary AJAX requests.]]></desc> |
| 12 | + <desc><![CDATA[These methods can be used to make arbitrary Ajax requests.]]></desc> |
13 | 13 | </category> |
14 | 14 | <category name="Shorthand Methods" slug="shorthand-methods"> |
15 | | - <desc><![CDATA[These methods perform the more common types of AJAX requests in less code.]]></desc> |
| 15 | + <desc><![CDATA[These methods perform the more common types of Ajax requests in less code.]]></desc> |
16 | 16 | </category> |
17 | 17 | </category> |
18 | 18 | <category name="Attributes" slug="attributes"> |
|
38 | 38 | <desc/> |
39 | 39 | <category name="Deprecated 1.3" slug="deprecated-1.3"> |
40 | 40 | <desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery. |
41 | | - <p>For more information, see the <a href="http://docs.jquery.com/Release:jQuery_1.3">jQuery 1.3 Release Notes</a>.</p> |
| 41 | + <p>For more information, see the <a href="http://blog.jquery.com/2009/01/14/jquery-1-3-released/">jQuery 1.3 Release Notes</a>.</p> |
42 | 42 | ]]></desc> |
43 | 43 | </category> |
44 | 44 | <category name="Deprecated 1.4" slug="deprecated-1.4"> |
|
56 | 56 | <p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2012/08/09/jquery-1-8-released/">http://blog.jquery.com/2012/08/09/jquery-1-8-released/</a></p> |
57 | 57 | ]]></desc> |
58 | 58 | </category> |
| 59 | + <category name="Deprecated 1.9" slug="deprecated-1.9"> |
| 60 | + <desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery. |
| 61 | + <p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/">http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/</a></p> |
| 62 | + ]]></desc> |
| 63 | + </category> |
59 | 64 | <category name="Deprecated 1.10" slug="deprecated-1.10"> |
60 | 65 | <desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery. |
61 | 66 | <p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/">http://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/</a></p> |
@@ -138,7 +143,7 @@ jQuery( "body" ).trigger( e ); |
138 | 143 | </li> |
139 | 144 | </ul> |
140 | 145 | <p>The following properties are also copied to the event object, though some of their values may be undefined depending on the event:</p> |
141 | | - <p>altKey, bubbles, button, cancelable, charCode, clientX, clientY, ctrlKey, currentTarget, data, detail, eventPhase, metaKey, offsetX, offsetY, originalTarget, pageX, pageY, prevValue, relatedTarget, screenX, screenY, shiftKey, target, view, which</p> |
| 146 | + <p>altKey, bubbles, button, cancelable, charCode, clientX, clientY, ctrlKey, currentTarget, data, detail, eventPhase, metaKey, offsetX, offsetY, originalTarget, pageX, pageY, relatedTarget, screenX, screenY, shiftKey, target, view, which</p> |
142 | 147 | <h4>OtherProperties</h4> |
143 | 148 | <p>Certain events may have properties specific to them. Those can be accessed as properties of the <code>event.originalEvent</code> object.</p> |
144 | 149 | <p>Example:</p> |
@@ -328,22 +333,22 @@ jQuery.event.props.push( "dataTransfer" ); |
328 | 333 | </category> |
329 | 334 | <category name="Version 1.2" slug="1.2"> |
330 | 335 | <desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery. |
331 | | - <a href="http://docs.jquery.com/Release:jQuery_1.2">jQuery 1.2 Release Notes</a> |
| 336 | + <a href="http://blog.jquery.com/2007/09/10/jquery-1-2-released/">jQuery 1.2 Release Notes</a> |
332 | 337 | ]]></desc> |
333 | 338 | </category> |
334 | 339 | <category name="Version 1.2.3" slug="1.2.3"> |
335 | 340 | <desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery. |
336 | | - Release Notes: <a href="http://docs.jquery.com/Release:jQuery_1.2.1">1.2.1</a>, <a href="http://docs.jquery.com/Release:jQuery_1.2.2">1.2.2</a>, <a href="http://docs.jquery.com/Release:jQuery_1.2.3">1.2.3</a>. |
| 341 | + Release Notes: <a href="http://blog.jquery.com/2007/09/16/jquery-1-2-1-released/">1.2.1</a>, <a href="http://blog.jquery.com/2008/01/14/jquery-1-2-2-released/">1.2.2</a>, <a href="http://blog.jquery.com/2008/02/07/jquery-1-2-3-released/">1.2.3</a>. |
337 | 342 | ]]></desc> |
338 | 343 | </category> |
339 | 344 | <category name="Version 1.2.6" slug="1.2.6"> |
340 | 345 | <desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery. |
341 | | - <a href="http://docs.jquery.com/Release:jQuery_1.2.6">jQuery 1.2.6 Release Notes</a>. |
| 346 | + <a href="http://blog.jquery.com/2008/05/24/jquery-1-2-6-released/">jQuery 1.2.6 Release Notes</a>. |
342 | 347 | ]]></desc> |
343 | 348 | </category> |
344 | 349 | <category name="Version 1.3" slug="1.3"> |
345 | 350 | <desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery. |
346 | | - Release Notes: <a href="http://docs.jquery.com/Release:jQuery_1.3">1.3</a>, <a href="http://docs.jquery.com/Release:jQuery_1.3.1">1.3.1</a>, <a href="http://docs.jquery.com/Release:jQuery_1.3.2">1.3.2</a> |
| 351 | + Release Notes: <a href="http://blog.jquery.com/2009/01/14/jquery-1-3-released/">1.3</a>, <a href="http://blog.jquery.com/2009/01/21/jquery-131-released/">1.3.1</a>, <a href="http://blog.jquery.com/2009/02/20/jquery-1-3-2-released/">1.3.2</a> |
347 | 352 | ]]></desc> |
348 | 353 | </category> |
349 | 354 | <category name="Version 1.4" slug="1.4"> |
|
0 commit comments