-
Notifications
You must be signed in to change notification settings - Fork 266
/
categories.xml
629 lines (626 loc) · 46.2 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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
<?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="/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>The Deferred object, introduced in jQuery 1.5, is a chainable utility object created by calling the <a href="/jQuery.Deferred/"><code>jQuery.Deferred()</code></a> method. It can register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function.</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>]]></desc>
</category>
<category name="Deprecated" slug="deprecated">
<desc/>
<category name="Deprecated 1.3" slug="deprecated-1.3">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>This version is no longer supported. Read more about our <a href="https://jquery.com/support/">Version Support</a>.</span></div>
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2009/01/14/jquery-1-3-released/">jQuery 1.3 Release Notes</a>.</p>
]]></desc>
</category>
<category name="Deprecated 1.4" slug="deprecated-1.4">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>This version is no longer supported. Read more about our <a href="https://jquery.com/support/">Version Support</a>.</span></div>
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the <a href="https://web.archive.org/web/20150119205819/http://jquery14.com/day-01/jquery-14">jQuery 1.4 Release Notes</a></p>
]]></desc>
</category>
<category name="Deprecated 1.7" slug="deprecated-1.7">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>This version is no longer supported. Read more about our <a href="https://jquery.com/support/">Version Support</a>.</span></div>
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2011/11/03/jquery-1-7-released/">https://blog.jquery.com/2011/11/03/jquery-1-7-released/</a></p>
]]></desc>
</category>
<category name="Deprecated 1.8" slug="deprecated-1.8">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>This version is no longer supported. Read more about our <a href="https://jquery.com/support/">Version Support</a>.</span></div>
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2012/08/09/jquery-1-8-released/">https://blog.jquery.com/2012/08/09/jquery-1-8-released/</a></p>
]]></desc>
</category>
<category name="Deprecated 1.9" slug="deprecated-1.9">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>This version is no longer supported. Read more about our <a href="https://jquery.com/support/">Version Support</a>.</span></div>
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/">https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/</a></p>
]]></desc>
</category>
<category name="Deprecated 1.10 & 2.0" slug="deprecated-1.10-and-2.0">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>These versions are no longer supported. Read more about our <a href="https://jquery.com/support/">Version Support</a>.</span></div>
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/">https://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/</a></p>
]]></desc>
</category>
<category name="Deprecated 3.0" slug="deprecated-3.0">
<desc><![CDATA[
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2016/06/09/jquery-3-0-final-released/">https://blog.jquery.com/2016/06/09/jquery-3-0-final-released/</a></p>
]]></desc>
</category>
<category name="Deprecated 3.2" slug="deprecated-3.2">
<desc><![CDATA[
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2017/03/16/jquery-3-2-0-is-out/">https://blog.jquery.com/2017/03/16/jquery-3-2-0-is-out/</a></p>
]]></desc>
</category>
<category name="Deprecated 3.3" slug="deprecated-3.3">
<desc><![CDATA[
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2018/01/19/jquery-3-3-0-a-fragrant-bouquet-of-deprecations-and-is-that-a-new-feature/">https://blog.jquery.com/2018/01/19/jquery-3-3-0-a-fragrant-bouquet-of-deprecations-and-is-that-a-new-feature/</a></p>
]]></desc>
</category>
<category name="Deprecated 3.4" slug="deprecated-3.4">
<desc><![CDATA[
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2019/04/10/jquery-3-4-0-released/">https://blog.jquery.com/2019/04/10/jquery-3-4-0-released/</a></p>
]]></desc>
</category>
<category name="Deprecated 3.5" slug="deprecated-3.5">
<desc><![CDATA[
<p>All the aspects of the API that were deprecated in the corresponding version of jQuery.</p>
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/">https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/</a></p>
]]></desc>
</category>
</category>
<category name="Dimensions" slug="dimensions">
<desc><![CDATA[These methods are used to get and set the CSS dimensions for the various properties.]]></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.]]></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="https://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>Common 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, buttons, cancelable, char, charCode, clientX, clientY, ctrlKey, currentTarget, data, detail, eventPhase, key, keyCode, metaKey, offsetX, offsetY, originalTarget, pageX, pageY, relatedTarget, screenX, screenY, shiftKey, target, toElement, view, which</p>
<h4>Other Properties</h4>
<p>To access event properties not listed above, use the <code>event.originalEvent</code> object:</p>
<pre><code>
// Access the `dataTransfer` property from the `drop` event which
// holds the files dropped into the browser window.
var files = event.originalEvent.dataTransfer.files;
</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><![CDATA[These methods and event handlers handle forms and their various elements.]]></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 section 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="Removed" slug="removed">
<desc></desc>
</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>To use any of the meta-characters ( such as <code> !"#$%&'()*+,./:;<=>?@[\]^`{|}~</code> ) as a literal part of a name, it must be escaped with with two backslashes: <code>\\</code>. For example, an element with <code>id="foo.bar"</code>, can use the selector <code>$("#foo\\.bar")</code>. The W3C CSS specification contains the <a href="https://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="https://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 allows elements to be identified by their attributes. While not supported by some older browsers for the purpose of styling documents, jQuery allows you to employ them regardless of the browser being used.</p>
<p>When using any of the following attribute selectors, you 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" rel="nofollow foe">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 <a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">valid identifier</a> 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="https://www.w3.org/Style/CSS/#specs">https://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="https://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[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2006/08/26/jquery-10/">jQuery 1.0 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.0.4" slug="1.0.4">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
Release Notes: <a href="https://blog.jquery.com/2006/08/31/jquery-101/">1.0.1</a>, <a href="https://blog.jquery.com/2006/10/09/jquery-102/">1.0.2</a>, <a href="https://blog.jquery.com/2006/10/27/jquery-103/">1.0.3</a>, <a href="https://blog.jquery.com/2006/12/12/jquery-104/">1.0.4</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.1" slug="1.1">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2007/01/14/jquery-birthday-11-new-site-new-docs/">jQuery 1.1 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.1.2" slug="1.1.2">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2007/02/27/jquery-112/">jQuery 1.1.2 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.1.3" slug="1.1.3">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2007/07/01/jquery-113-800-faster-still-20kb/">jQuery 1.1.3 Release Notes</a>
<hr/>
]]></desc>
</category>
<category name="Version 1.1.4" slug="1.1.4">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2007/08/24/jquery-114-faster-more-tests-ready-for-12/">jQuery 1.1.4 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.2" slug="1.2">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2007/09/10/jquery-1-2-released/">jQuery 1.2 Release Notes</a>
<hr/>
]]></desc>
</category>
<category name="Version 1.2.3" slug="1.2.3">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
Release Notes: <a href="https://blog.jquery.com/2007/09/16/jquery-1-2-1-released/">1.2.1</a>, <a href="https://blog.jquery.com/2008/01/14/jquery-1-2-2-released/">1.2.2</a>, <a href="https://blog.jquery.com/2008/02/07/jquery-1-2-3-released/">1.2.3</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.2.6" slug="1.2.6">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2008/05/24/jquery-1-2-6-released/">jQuery 1.2.6 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.3" slug="1.3">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
Release Notes: <a href="https://blog.jquery.com/2009/01/14/jquery-1-3-released/">1.3</a>, <a href="https://blog.jquery.com/2009/01/21/jquery-131-released/">1.3.1</a>, <a href="https://blog.jquery.com/2009/02/20/jquery-1-3-2-released/">1.3.2</a>
<hr/>
]]></desc>
</category>
<category name="Version 1.4" slug="1.4">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://web.archive.org/web/20150119205819/http://jquery14.com/day-01/jquery-14">jQuery 1.4 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.4.1" slug="1.4.1">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://web.archive.org/web/20150213113058/http://jquery14.com/day-12/jquery-141-released">jQuery 1.4.1 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.4.2" slug="1.4.2">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2010/02/19/jquery-142-released/">jQuery 1.4.2 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.4.3" slug="1.4.3">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2010/10/16/jquery-143-released/">jQuery 1.4.3 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.4.4" slug="1.4.4">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<a href="https://blog.jquery.com/2010/11/11/jquery-1-4-4-release-notes/">jQuery 1.4.4 Release Notes</a>.
<hr/>
]]></desc>
</category>
<category name="Version 1.5" slug="1.5">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<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="https://api.jquery.com/jQuery.ajax/#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 the <a href="https://api.jquery.com/category/deferred-object/">Deferred Object</a> documentation.</p>
<hr/>
]]></desc>
</category>
<category name="Version 1.5.1" slug="1.5.1">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<p>API changes in jQuery 1.5.1 dealt primarily with jQuery.ajax settings and jQuery.support properties.</p>
<hr/>
]]></desc>
</category>
<category name="Version 1.6" slug="1.6">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<hr/>
]]></desc>
</category>
<category name="Version 1.7" slug="1.7">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<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.7.0 included:</p>
<ul>
<li>New event APIs: <code>.on()</code> and <code>.off()</code></li>
<li>Better Support for HTML5 in IE6/7/8</li>
<li><code>jQuery.Callbacks()</code></li>
<li>Toggling Animations Work Intuitively</li>
</ul>
<p>For more information, see the <a href="https://blog.jquery.com/2011/11/03/jquery-1-7-released/">Release Notes/Changelog</a></p>
<hr/>
]]></desc>
</category>
<category name="Version 1.8" slug="1.8">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<p>API changes in jQuery 1.8.0 dealt primarily with animations and the removal of some methods such as <code>deferred.isResolved()</code>, <code>deferred.isRejected()</code>, <code>$.curCSS()</code>, <code>$.attrFn()</code>, and <code>$(element).closest(Array)</code> returning Array.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2012/08/09/jquery-1-8-released/">Release Notes/Changelog</a></p>
<hr/>
]]></desc>
</category>
<category name="Version 1.9" slug="1.9">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since this version was released. If using this version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<p>Changes in jQuery 1.9 dealt primarily with removal or modification of several APIs that behaved inconsistently or inefficiently in the past.</p>
<p>A <a href="https://github.com/jquery/jquery-migrate">jQuery Migrate Plugin</a> was offered to help developers with a transitional upgrade path.</p>
<p>For more information, see the <a href="https://jquery.com/upgrade-guide/1.9/">jQuery Core 1.9 Upgrade guide</a> and the <a href="https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/">Release Notes/Changelog</a></p>
<hr/>
]]></desc>
</category>
<category name="Version 1.10 & 2.0" slug="1.10-and-2.0">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since these versions were released. If using either version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<p>Changes in jQuery 1.10 and 2.0 include a new `wrap` module, relaxing HTML parsing, and aligning the 1.x & 2.x lines.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2013/04/18/jquery-2-0-released/">2.0 Release Notes/Changelog</a> and <a href="https://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/">1.10.0/2.0.1 Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 1.11 & 2.1" slug="1.11-and-2.1">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since these versions were released. If using either version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<p>Changes in jQuery 1.11 and 2.1 include lower startup overhead & fewer forced layouts; jQuery is now authored via AMD and published to npm & bower under the name <code>jquery</code>.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2014/01/24/jquery-1-11-and-2-1-released/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 1.12 & 2.2" slug="1.12-and-2.2">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>Some APIs may have changed since these versions were released. If using either version, find out about our <a href="https://jquery.com/support">version support</a>.</span></div>
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
<p>Changes in jQuery 1.12 and 2.2 include performance improvements of the selector engine, manipulation of class names for SVG elements, support for the Symbol type and iterators added in ES2015, and a new hook has been added for filtering HTML.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2016/01/08/jquery-2-2-and-1-12-released/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 3.0" slug="3.0">
<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>Changes in jQuery 3.0 dealt primarily with deferreds, data, show/hide and removal of some deprecated APIs. A <a href="https://github.com/jquery/jquery-migrate">jQuery Migrate Plugin</a> was offered to help developers with a transitional upgrade path.</p>
<p>For more information, see the <a href="https://jquery.com/upgrade-guide/3.0/">jQuery Core 3.0 Upgrade guide</a> and the <a href="https://blog.jquery.com/2016/06/09/jquery-3-0-final-released/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 3.1" slug="3.1">
<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>Version 3.1 added the <a href="/jQuery.readyException">jQuery.readyException</a> API.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2016/07/07/jquery-3-1-0-released-no-more-silent-errors/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 3.2" slug="3.2">
<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>Version 3.2 added support for custom CSS properties, made <code>.contents()</code> work on the <a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template"><code><template></code> element</a> & made <code>.width()</code> & <code>.height()</code> ignore CSS transforms. A few APIs were deprecated. The deprecated module was added back to the slim build.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2017/03/16/jquery-3-2-0-is-out/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 3.3" slug="3.3">
<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><code>.addClass()</code>, <code>.removeClass()</code> & <code>.toggleClass()</code> now work on arrays of classes; a few APIs were deprecated.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2018/01/19/jquery-3-3-0-a-fragrant-bouquet-of-deprecations-and-is-that-a-new-feature/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 3.4" slug="3.4">
<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><code>nonce</code> & <code>nomodule</code> attributes are now preserved during script manipulation, layout thrashing was eliminated in some cases in <code>.width()</code> & <code>.height()</code> APIs. Radio elements state is now updated before event handlers run. Passing data now works when triggering all events, including <code>focus</code>. A minor security fix is also included.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2019/04/10/jquery-3-4-0-released/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 3.5" slug="3.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>Security fixes, including a breaking change to <code>jQuery.htmlPrefilter</code>; new <code>.even()</code> & <code>.odd()</code> methods; <code>jQuery.globalEval</code> now accepts context; unsuccessful HTTP script responses are no longer evaluated; performance improvements. <code>jQuery.trim</code> is now deprecated. A <a href="https://github.com/jquery/jquery-migrate">jQuery Migrate Plugin</a> was offered to help developers with a transitional upgrade path.</p>
<p>For more information, see the <a href="https://jquery.com/upgrade-guide/3.5/">jQuery Core 3.5 Upgrade guide</a> and the <a href="https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 3.6" slug="3.6">
<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>Returning JSON even for JSONP erroneous responses is working again, a few focus fixes.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2021/03/02/jquery-3-6-0-released/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 3.7" slug="3.7">
<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>New <code>.uniqueSort()</code> method performance improvements in manipulation, fixes for <code>.outerWidth( true )</code> & <code>.outerHeight( true )</code> with negative margins, focus fixes.</p>
<p>As of this release, jQuery no longer relies on Sizzle.</p>
<p>Native events for <code>focus</code> & <code>blur</code> changed in IE to - respectively - <code>focusin</code> and <code>focusout</code>.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/">Release Notes/Changelog</a>.</p>
<hr/>
]]></desc>
</category>
<category name="Version 4.0" slug="4.0">
<desc><![CDATA[
<div id="version-support-warning" class="warning"><i class="icon-info-sign"></i> <span>This is a pre-release. Behavior may change before 4.0.0 final is released.</span></div>
<p>Aspects of the API that were changed in the corresponding version of jQuery.</p>
<p>Dropped support for IE <11 & Edge Legacy, removed deprecated APIs, added FormData support, improved support for CSP & Trusted Types. Automatic JSONP promotion removed. Special handling of boolean attributes removed.</p>
<p>Callbacks & Deferred modules are now excluded from the Slim build.</p>
<p>jQuery is now authored in ESM.</p>
<p>For more information, see the <a href="https://blog.jquery.com/2024/07/17/second-beta-of-jquery-4-0-0/">Release Notes/Changelog of jQuery 4.0.0-beta.2</a>.</p>
<hr/>
]]></desc>
</category>
<category name="All" slug="all"/>
</category>
</categories>