forked from jquery/api.jquery.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.xml
385 lines (383 loc) · 27.7 KB
/
categories.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
<?xml version="1.0"?>
<categories>
<category name="Ajax" slug="ajax">
<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>
<category name="Global Ajax Event Handlers" slug="global-ajax-event-handlers">
<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>
</category>
<category name="Helper Functions" slug="helper-functions">
<desc><![CDATA[These functions assist with common idioms encountered when performing AJAX tasks.]]></desc>
</category>
<category name="Low-Level Interface" slug="low-level-interface">
<desc><![CDATA[These methods can be used to make arbitrary AJAX requests.]]></desc>
</category>
<category name="Shorthand Methods" slug="shorthand-methods">
<desc><![CDATA[These methods perform the more common types of AJAX requests in less code.]]></desc>
</category>
</category>
<category name="Attributes" slug="attributes">
<desc><![CDATA[These methods get and set DOM attributes of elements.]]></desc>
</category>
<category name="Callbacks Object" slug="callbacks-object">
<desc><![CDATA[The <code>jQuery.Callbacks()</code> function, introduced in version 1.7, returns a multi-purpose object that provides a powerful way to manage callback lists. It supports adding, removing, firing, and disabling callbacks.]]></desc>
</category>
<category name="Core" slug="core">
<desc/>
</category>
<category name="CSS" slug="css">
<desc><![CDATA[These methods get and set CSS-related properties of elements.]]></desc>
</category>
<category name="Data" slug="data">
<desc><![CDATA[These methods allow us to associate arbitrary data with specific DOM elements.]]></desc>
</category>
<category name="Deferred Object" slug="deferred-object">
<desc><![CDATA[
<p><code>jQuery.Deferred()</code>, introduced in version 1.5, is a chainable utility object that can register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function.</p>
<div class="longdesc">
<p>In JavaScript it is common to invoke functions that optionally accept callbacks that are called within that function.</p>
<p>For example, in versions prior to jQuery 1.5, asynchronous processes such as <code>jQuery.ajax()</code> accept callbacks to be invoked some time in the near-future upon success, error, and completion of the ajax request.</p>
<p><code>jQuery.Deferred()</code> introduces several enhancements to the way callbacks are managed and invoked. In particular, <code>jQuery.Deferred()</code> provides flexible ways to provide multiple callbacks, and these callbacks can be invoked regardless of whether the original callback dispatch has already occurred. jQuery Deferred is based on the <a href="http://wiki.commonjs.org/wiki/Promises/A">CommonJS Promises/A</a> design.</p>
<p>One model for understanding Deferred is to think of it as a chain-aware function wrapper. The <a href="http://api.jquery.com/deferred.then"><code>deferred.then()</code></a>, <a href="http://api.jquery.com/deferred.done"><code>deferred.done()</code></a>, and <a href="http://api.jquery.com/deferred.fail"><code>deferred.fail()</code></a> methods specify the functions to be called and the <a href="http://api.jquery.com/deferred.resolve"><code>deferred.resolve(args)</code></a> or <a href="http://api.jquery.com/deferred.reject"><code>deferred.reject(args)</code></a> methods "call" the functions with the arguments you supply. Once the Deferred has been resolved or rejected it stays in that state; a second call to <code>deferred.resolve()</code> is ignored for example. If more functions are added by <code>deferred.then()</code> after the Deferred is resolved, they are called immediately with the arguments previously provided.</p>
<p>In most cases where a jQuery API call returns a Deferred or Deferred-compatible object, such as <a href="http://api.jquery.com/jQuery.ajax"><code>jQuery.ajax()</code></a> or <a href="http://api.jquery.com/jQuery.when"><code>jQuery.when()</code></a>, you will only want to use the <a href="http://api.jquery.com/deferred.then"><code>deferred.then()</code></a>, <a href="http://api.jquery.com/deferred.done"><code>deferred.done()</code></a>, and <a href="http://api.jquery.com/deferred.fail"><code>deferred.fail()</code></a> methods to add callbacks to the Deferred's queues. The internals of the API call or code that created the Deferred will invoke <a href="http://api.jquery.com/deferred.resolve"><code>deferred.resolve()</code></a> or <a href="http://api.jquery.com/deferred.reject"><code>deferred.reject()</code></a> on the deferred at some point, causing the appropriate callbacks to run.</p>
<h4>jQuery.Deferred Constructor</h4>
<p>The <code>jQuery.Deferred()</code> constructor creates a new Deferred object. The <code>new</code> operator is optional.</p>
<p><code>jQuery.Deferred</code> can be passed an optional function, which is called just before the constructor returns and is passed the constructed <code>deferred</code> object as both the <code>this</code> object and as the first argument to the function. The called function can attach callbacks using <a href="http://api.jquery.com/deferred.then"><code>deferred.then()</code></a> for example.</p>
<p>A Deferred object starts in the <em>pending</em> state. Any callbacks added to the object with <a href="http://api.jquery.com/deferred.then"><code>deferred.then()</code></a>, <a href="http://api.jquery.com/deferred.done"><code>deferred.done()</code></a>, or <a href="http://api.jquery.com/deferred.fail"><code>deferred.fail()</code></a> are queued to be executed later. Calling <a href="http://api.jquery.com/deferred.resolve"><code>deferred.resolve()</code></a> or <a href="http://api.jquery.com/deferred.resolveWith"><code>deferred.resolveWith()</code></a> transitions the Deferred into the <em>resolved</em> state and immediately executes any <code>doneCallbacks</code> that are set. Calling <a href="http://api.jquery.com/deferred.reject"><code>deferred.reject()</code></a> or <a href="http://api.jquery.com/deferred.rejectWith"><code>deferred.rejectWith()</code></a> transitions the Deferred into the <em>rejected</em> state and immediately executes any <code>failCallbacks</code> that are set. Once the object has entered the resolved or rejected state, it stays in that state. Callbacks can still be added to the resolved or rejected Deferred -- they will execute immediately.</p>
<p>The Deferred object is chainable, similar to the way a jQuery object is chainable, but it has its own methods. After creating a Deferred object, you can use any of the methods below by either chaining directly from the object creation or saving the object in a variable and invoking one or more methods on that variable.</p>
</div>
]]></desc>
</category>
<category name="Deprecated" slug="deprecated">
<desc><![CDATA[These items have been deprecated, though not necessarily removed, from jQuery.]]></desc>
</category>
<category name="Dimensions" slug="dimensions">
<desc/>
</category>
<category name="Effects" slug="effects">
<desc><![CDATA[The jQuery library provides several techniques for adding animation to a web page. These include simple, standard animations that are frequently used, and the ability to craft sophisticated custom effects. In this chapter, we'll closely examine each of the effect methods, revealing all of the mechanisms jQuery has for providing visual feedback to the user.]]></desc>
<category name="Basics" slug="basics">
<desc/>
</category>
<category name="Custom" slug="custom-effects">
<desc><![CDATA[These methods allow you to create effects that are not provided "out of the box" by jQuery.]]></desc>
</category>
<category name="Fading" slug="fading">
<desc><![CDATA[These methods adjust the opacity of elements.]]></desc>
</category>
<category name="Sliding" slug="sliding">
<desc/>
</category>
</category>
<category name="Events" slug="events">
<desc><![CDATA[These methods are used to register behaviors to take effect when the user interacts with the browser, and to further manipulate those registered behaviors.]]></desc>
<category name="Browser Events" slug="browser-events">
<desc/>
</category>
<category name="Document Loading" slug="document-loading">
<desc/>
</category>
<category name="Event Handler Attachment" slug="event-handler-attachment">
<desc/>
</category>
<category name="Event Object" slug="event-object">
<desc><![CDATA[
<p>jQuery's event system normalizes the event object according to <a href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html">W3C standards</a>. The event object is guaranteed to be passed to the event handler. Most properties from the original event are copied over and normalized to the new event object.</p>
<div class="longdesc">
<h4>jQuery.Event Constructor</h4>
<p>The <code>jQuery.Event</code> constructor is exposed and can be used when calling <a href="/trigger">trigger</a>. The <code>new</code> operator is optional.</p>
<p>Check <a href="/trigger">trigger</a>'s documentation to see how to combine it with your own event object.</p>
<p>Example:</p>
<pre>
<code>//Create a new jQuery.Event object without the "new" operator.
var e = jQuery.Event("click");
// trigger an artificial click event
jQuery("body").trigger( e );
</code>
</pre>
<p>As of jQuery 1.6, you can also pass an object to <code>jQuery.Event()</code> and its properties will be set on the newly created Event object.</p>
<p>Example:</p>
<pre>
<code> // Create a new jQuery.Event object with specified event properties.
var e = jQuery.Event("keydown", { keyCode: 64 });
// trigger an artificial keydown event with keyCode 64
jQuery("body").trigger( e );
</code>
</pre>
<h4>Event Properties</h4>
<p>jQuery normalizes the following properties for cross-browser consistency:</p>
<ul>
<li>
<code>target</code>
</li>
<li>
<code>relatedTarget</code>
</li>
<li>
<code>pageX</code>
</li>
<li>
<code>pageY</code>
</li>
<li>
<code>which</code>
</li>
<li>
<code>metaKey</code>
</li>
</ul>
<p>The following properties are also copied to the event object, though some of their values may be undefined depending on the event:</p>
<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>
<h4>OtherProperties</h4>
<p>Certain events may have properties specific to them. Those can be accessed as properties of the <code>event.originalEvent</code> object. To make special properties available in all event objects, they can be added to the <code>jQuery.event.props</code> array. This is not recommended, since it adds overhead to every event delivered by jQuery.</p>
<p>Example:</p>
<pre>
<code>
// add the dataTransfer property for use with the native `drop` event
// to capture information about files dropped into the browser window
jQuery.event.props.push("dataTransfer");
</code>
</pre>
</div>
]]></desc>
</category>
<category name="Form Events" slug="form-events">
<desc/>
</category>
<category name="Keyboard Events" slug="keyboard-events">
<desc/>
</category>
<category name="Mouse Events" slug="mouse-events">
<desc/>
</category>
</category>
<category name="Forms" slug="forms">
<desc/>
</category>
<category name="Internals" slug="internals">
<desc><![CDATA[Although this category is referred to as 'internal', any methods documented within the API site should be considered public and may be freely used. ]]></desc>
</category>
<category name="Manipulation" slug="manipulation">
<desc><![CDATA[All of the methods in this chapter manipulate the DOM in some manner. A few of them simply change one of the attributes of an element (also listed in the <a href="/category/attributes/">Attributes category</a>), while others set an element's style properties (also listed in the <a href="/category/css/">CSS category</a>). Still others modify entire elements (or groups of elements) themselves—inserting, copying, removing, and so on. All of these methods are referred to as "setters," as they change the values of properties.
A few of these methods—such as <code>.attr()</code>, <code>.html()</code>, and <code>.val()</code>—also act as "getters," retrieving information from DOM elements for later use.
]]></desc>
<category name="Class Attribute" slug="class-attribute">
<desc><![CDATA[These methods inspect and manipulate the CSS classes assigned to elements.]]></desc>
</category>
<category name="Copying" slug="copying">
<desc><![CDATA[This method allows us to make copies of elements.]]></desc>
</category>
<category name="DOM Insertion" slug="dom-insertion">
<desc/>
</category>
<category name="DOM Insertion, Around" slug="dom-insertion-around">
<desc><![CDATA[These methods allow us to insert new content surrounding existing content.]]></desc>
</category>
<category name="DOM Insertion, Inside" slug="dom-insertion-inside">
<desc><![CDATA[These methods allow us to insert new content inside an existing element.]]></desc>
</category>
<category name="DOM Insertion, Outside" slug="dom-insertion-outside">
<desc><![CDATA[These methods allow us to insert new content outside an existing element.]]></desc>
</category>
<category name="DOM Removal" slug="dom-removal">
<desc><![CDATA[These methods allow us to delete elements from the DOM.]]></desc>
</category>
<category name="DOM Replacement" slug="dom-replacement">
<desc><![CDATA[These methods are used to remove content from the DOM and replace it with new content.]]></desc>
</category>
<category name="General Attributes" slug="general-attributes">
<desc><![CDATA[These methods get and set DOM attributes of elements]]></desc>
</category>
<category name="Style Properties" slug="style-properties">
<desc><![CDATA[These methods get and set CSS-related properties of elements.]]></desc>
</category>
</category>
<category name="Miscellaneous" slug="miscellaneous">
<desc/>
<category name="Collection Manipulation" slug="collection-manipulation">
<desc/>
</category>
<category name="Data Storage" slug="data-storage">
<desc><![CDATA[These methods allow us to associate arbitrary data with specific DOM elements.]]></desc>
</category>
<category name="DOM Element Methods" slug="dom-element-methods">
<desc/>
</category>
<category name="Setup Methods" slug="setup-methods">
<desc/>
</category>
</category>
<category name="Offset" slug="offset">
<desc/>
</category>
<category name="Properties" slug="properties">
<desc/>
<category name="Properties of jQuery Object Instances" slug="jquery-object-instance-properties">
<desc><![CDATA[Each jQuery object created with the jQuery() function contains a number of properties alongside its methods. These properties allow us to inspect various attributes of the object.]]></desc>
</category>
<category name="Properties of the Global jQuery Object" slug="global-jquery-object-properties">
<desc><![CDATA[These properties are associated with the global jQuery object.]]></desc>
</category>
</category>
<category name="Selectors" slug="selectors">
<desc><![CDATA[
<p>Borrowing from CSS 1–3, and then adding its own, jQuery offers a powerful set of tools for matching a set of elements in a document.</p>
<p>If you wish to use any of the meta-characters ( such as <code> !"#$%&'()*+,./:;<=>?@[\]^`{|}~</code> ) as a literal part of a name, you must escape the character with two backslashes: <code>\\</code>. For example, if you have an element with <code>id="foo.bar"</code>, you can use the selector <code>$("#foo\\.bar")</code>. The W3C CSS specification contains the <a href="http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">complete set of rules regarding valid CSS selectors</a>. Also useful is the blog entry by Mathias Bynens on <a href="http://mathiasbynens.be/notes/css-escapes">CSS character escape sequences for identifiers</a>.</p>
]]></desc>
<category name="Attribute" slug="attribute-selectors">
<desc><![CDATA[
<p>The CSS specification also allows elements to be identified by their attributes. While not widely supported by browsers for the purpose of styling documents, these attribute selectors are highly useful, and jQuery allows us to employ them regardless of the browser being used.
When using any of the following attribute selectors, we should account for attributes that have multiple, space-separated values. Since these selectors see attribute values as a single string, this selector, for example, <code>$("a[rel='nofollow']")</code>, will select <code><a href="example.html" rel="nofollow">Some text</a></code> but not <code><a href="example.html">Some text</a></code>.</p>
<p>Attribute values in selector expressions <b>must</b> follow the rules for W3C CSS selectors, in general that means anything other than a simple identifier should be surrounded by quotation marks.</p>
<ul>
<li>double quotes inside single quotes: <code>$('a[rel="nofollow self"]')</code></li>
<li>single quotes inside double quotes: <code>$("a[rel='nofollow self']")</code></li>
<li>escaped single quotes inside single quotes: <code>$('a[rel=\'nofollow self\']')</code></li>
<li>escaped double quotes inside double quotes: <code>$("a[rel=\"nofollow self\"]")</code></li>
</ul>
<p>The variation you choose is generally a matter of style or convenience.</p>
<p><strong>Note</strong>: In jQuery 1.3 <code>[@attr]</code> style selectors were removed (they were previously deprecated in jQuery 1.2). Simply remove the "@" symbol from your selectors in order to make them work again.</p>
]]></desc>
</category>
<category name="Basic" slug="basic-css-selectors">
<desc><![CDATA[The following selectors are based on the Cascading Style Sheet 1 specification, as outlined by the W3C. For more information about the specifications, visit <a href="http://www.w3.org/Style/CSS/#specs">http://www.w3.org/Style/CSS/#specs</a>. ]]></desc>
</category>
<category name="Basic Filter" slug="basic-filter-selectors">
<desc/>
</category>
<category name="Child Filter" slug="child-filter-selectors">
<desc/>
</category>
<category name="Content Filter" slug="content-filter-selector">
<desc/>
</category>
<category name="Form" slug="form-selectors">
<desc/>
</category>
<category name="Hierarchy" slug="hierarchy-selectors">
<desc/>
</category>
<category name="jQuery Extensions" slug="jquery-selector-extensions">
<desc><![CDATA[jQuery has extended the CSS3 selectors with the following selectors. Because these selectors are jQuery extension and not part of the CSS specification, queries using them cannot take advantage of the performance boost provided by the native DOM <code>querySelectorAll()</code> method. To achieve the best performance when using these selectors, first select some elements using a pure CSS selector, then use <a href="http://api.jquery.com/filter/"><code>.filter()</code></a>.]]></desc>
</category>
<category name="Visibility Filter" slug="visibility-filter-selectors">
<desc/>
</category>
</category>
<category name="Traversing" slug="traversing">
<desc/>
<category name="Filtering" slug="filtering">
<desc/>
</category>
<category name="Miscellaneous Traversing" slug="miscellaneous-traversal">
<desc/>
</category>
<category name="Tree Traversal" slug="tree-traversal">
<desc/>
</category>
</category>
<category name="Uncategorized" slug="uncategorized"/>
<category name="Utilities" slug="utilities">
<desc/>
</category>
<category name="Version" slug="version">
<desc/>
<category name="Version 1.0" slug="1.0">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://blog.jquery.com/2006/08/26/jquery-10/">jQuery 1.0 Release Notes</a>.
]]></desc>
</category>
<category name="Version 1.0.4" slug="1.0.4">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
Release Notes: <a href="http://blog.jquery.com/2006/08/31/jquery-101/">1.0.1</a>, <a href="http://blog.jquery.com/2006/10/09/jquery-102/">1.0.2</a>, <a href="http://blog.jquery.com/2006/10/27/jquery-103/">1.0.3</a>, <a href="http://blog.jquery.com/2006/12/12/jquery-104/">1.0.4</a>.
]]></desc>
</category>
<category name="Version 1.1" slug="1.1">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://blog.jquery.com/2007/01/14/jquery-birthday-11-new-site-new-docs/">jQuery 1.1 Release Notes</a>.
]]></desc>
</category>
<category name="Version 1.1.2" slug="1.1.2">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://blog.jquery.com/2007/02/27/jquery-112/">jQuery 1.1.2 Release Notes</a>.
]]></desc>
</category>
<category name="Version 1.1.3" slug="1.1.3">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://blog.jquery.com/2007/07/01/jquery-113-800-faster-still-20kb/">jQuery 1.1.3 Release Notes</a>
]]></desc>
</category>
<category name="Version 1.1.4" slug="1.1.4">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://blog.jquery.com/2007/08/24/jquery-114-faster-more-tests-ready-for-12/">jQuery 1.1.4 Release Notes</a>.
]]></desc>
</category>
<category name="Version 1.2" slug="1.2">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://docs.jquery.com/Release:jQuery_1.2">jQuery 1.2 Release Notes</a>
]]></desc>
</category>
<category name="Version 1.2.3" slug="1.2.3">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
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>.
]]></desc>
</category>
<category name="Version 1.2.6" slug="1.2.6">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://docs.jquery.com/Release:jQuery_1.2.6">jQuery 1.2.6 Release Notes</a>.
]]></desc>
</category>
<category name="Version 1.3" slug="1.3">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
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>
]]></desc>
</category>
<category name="Version 1.4" slug="1.4">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://jquery14.com/day-01/jquery-14">jQuery 1.4 Release Notes</a>.
]]></desc>
</category>
<category name="Version 1.4.1" slug="1.4.1">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://jquery14.com/day-12/jquery-141-released">jQuery 1.4.1 Release Notes</a>.
]]></desc>
</category>
<category name="Version 1.4.2" slug="1.4.2">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://blog.jquery.com/2010/02/19/jquery-142-released/">jQuery 1.4.2 Release Notes</a>.
]]></desc>
</category>
<category name="Version 1.4.3" slug="1.4.3">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
<a href="http://blog.jquery.com/2010/10/16/jquery-143-released/">jQuery 1.4.3 Release Notes</a>.
]]></desc>
</category>
<category name="Version 1.4.4" slug="1.4.4">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery. <a href="http://blog.jquery.com/2010/11/11/jquery-1-4-4-release-notes/">jQuery 1.4.4 Release Notes</a>.]]></desc>
</category>
<category name="Version 1.5" slug="1.5">
<desc><![CDATA[
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<p>jQuery 1.5 also includes a large rewrite of the Ajax module, which has a number of extensibility improvements. You can find out more about those improvements in the <a href="http://api.jquery.com/extending-ajax/">Extending Ajax</a> documentation.</p>
<p>Additionally jQuery 1.5 includes a new Deferred callback management system you can learn more about in in the <a href="http://api.jquery.com/category/deferred-object/">Deferred Object</a> documentation.</p>
]]></desc>
</category>
<category name="Version 1.5.1" slug="1.5.1">
<desc><![CDATA[Aspects of the API that were changed in the corresponding version of jQuery. API changes in jQuery 1.5.1 dealt primarily with jQuery.ajax settings and jQuery.support properties.]]></desc>
</category>
<category name="Version 1.6" slug="1.6">
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.]]></desc>
</category>
<category name="Version 1.7" slug="1.7">
<desc><![CDATA[
<p>Aspects of the API that were changed in the corresponding version of jQuery. API changes in jQuery 1.7.0 dealt primarily with the new
Event APIs: <code>.on()</code> and <code>.off()</code>
Better Support for HTML5 in IE6/7/8
<code>jQuery.Callbacks()</code>
Toggling Animations Work Intuitively
</p>
<p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2011/11/03/jquery-1-7-released/">http://blog.jquery.com/2011/11/03/jquery-1-7-released/</a></p>
<hr/>
]]></desc>
</category>
</category>
</categories>