diff --git a/categories.xml b/categories.xml
index 78f012b1..22dbd59b 100644
--- a/categories.xml
+++ b/categories.xml
@@ -71,6 +71,11 @@
For more information, see the Release Notes/Changelog at https://blog.jquery.com/2016/06/09/jquery-3-0-final-released/
]]>
+
+ For more information, see the Release Notes/Changelog at https://blog.jquery.com/2017/03/16/jquery-3-2-0-is-out/
+ ]]>
+
For more information, see the Release Notes/Changelog at https://blog.jquery.com/2018/01/19/jquery-3-3-0-a-fragrant-bouquet-of-deprecations-and-is-that-a-new-feature/
@@ -81,6 +86,11 @@
For more information, see the Release Notes/Changelog at https://blog.jquery.com/2019/04/10/jquery-3-4-0-released/
]]>
+
+ For more information, see the Release Notes/Changelog at https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/
+ ]]>
+
@@ -429,7 +439,7 @@ var files = event.originalEvent.dataTransfer.files;
]]>
-
+
Aspects of the API that were changed in the corresponding versions of jQuery. Changes in jQuery 1.12 and 2.2 includes 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. A jQuery Migrate Plugin was offered to help developers with a transitional upgrade path.
@@ -447,7 +457,36 @@ var files = event.originalEvent.dataTransfer.files;
jQuery.readyException was added.
+ Aspects of the API that were changed in the corresponding version of jQuery. Version 3.1 added the jQuery.readyException API.
+ For more information, see the Release Notes/Changelog
+
+ ]]>
+
+
+ Aspects of the API that were changed in the corresponding version of jQuery. Version 3.2 added support for custom CSS properties, made .contents()
work on the <template>
element & made .width()
& .height()
ignore CSS transforms. A few APIs were deprecated. The deprecated module was added back to the slim build.
+ For more information, see the Release Notes/Changelog
+
+ ]]>
+
+
+ Aspects of the API that were changed in the corresponding version of jQuery. .addClass()
, .removeClass()
& .toggleClass()
now work on arrays of classes; a few APIs were deprecated.
+ For more information, see the Release Notes/Changelog
+
+ ]]>
+
+
+ Aspects of the API that were changed in the corresponding version of jQuery. nonce
& nomodule
attributes are now preserved during script manipulation, layout thrashing was eliminated in some cases in .width()
& .height()
APIs. Radio elements state is now updated before event handlers run. Passing data now works when triggering all events, including focus
. A minor security fix is also included.
+ For more information, see the Release Notes/Changelog
+
+ ]]>
+
+
+ Aspects of the API that were changed in the corresponding version of jQuery. Security fixes, new .even()
& .odd()
methods; jQuery.globalEval
now accepts context; unsuccessful HTTP script responses are no longer evaluated; performance improvements. jQuery.trim
is now deprecated.
+ For more information, see the jQuery Core 3.5 Upgrade guide and the Release Notes/Changelog
]]>
diff --git a/entries/addClass.xml b/entries/addClass.xml
index 3b28a708..9af9723a 100644
--- a/entries/addClass.xml
+++ b/entries/addClass.xml
@@ -7,10 +7,16 @@
One or more space-separated classes to be added to the class attribute of each matched element.
+
+ 3.3
+
+ An array of classes to be added to the class attribute of each matched element.
+
+
1.4
- A function returning one or more space-separated class names to be added to the existing class name(s). Receives the index position of the element in the set and the existing class name(s) as arguments. Within the function, this
refers to the current element in the set.
+ A function returning one or more space-separated classes or an array of classes to be added to the existing class name(s). Receives the index position of the element in the set and the existing class name(s) as arguments. Within the function, this
refers to the current element in the set.
@@ -82,6 +88,29 @@ $( "p" ).last().addClass( "selected highlight" );
Hello
and
Goodbye
+]]>