diff --git a/entries/toggleClass.xml b/entries/toggleClass.xml index 1d034d86..5a18aa05 100644 --- a/entries/toggleClass.xml +++ b/entries/toggleClass.xml @@ -1,67 +1,62 @@ - - .toggleClass() - - 1.0 - - One or more class names (separated by spaces) to be toggled for each element in the matched set. - - - - 1.3 - - One or more class names (separated by spaces) to be toggled for each element in the matched set. - - - A Boolean (not just truthy/falsy) value to determine whether the class should be added or removed. - - - - 1.4 - - A boolean value to determine whether the class should be added or removed. - - - - 1.4 - - - - - - A function that returns class names to be toggled in the class attribute of each element in the matched set. Receives the index position of the element in the set, the old class value, and the state as arguments. - - - A boolean value to determine whether the class should be added or removed. - - - Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument. - -

This method takes one or more class names as its parameter. In the first version, if an element in the matched set of elements already has the class, then it is removed; if an element does not have the class, then it is added. For example, we can apply .toggleClass() to a simple <div>:

-

+
+  
+    .toggleClass()
+    
+      1.0
+      
+        One or more class names (separated by spaces) to be toggled for each element in the matched set.
+      
+    
+    
+      1.3
+      
+        One or more class names (separated by spaces) to be toggled for each element in the matched set.
+      
+      
+        A Boolean (not just truthy/falsy) value to determine whether the class should be added or removed.
+      
+    
+    
+      1.4
+      
+        
+        
+        
+        
+        A function that returns class names to be toggled in the class attribute of each element in the matched set. Receives the index position of the element in the set, the old class value, and the state as arguments.
+      
+      
+        A boolean value to determine whether the class should be added or removed.
+      
+    
+    Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument.
+    
+      

This method takes one or more class names as its parameter. In the first version, if an element in the matched set of elements already has the class, then it is removed; if an element does not have the class, then it is added. For example, we can apply .toggleClass() to a simple <div>:

+

 <div class="tumble">Some text.</div>
-    
-

The first time we apply $( "div.tumble" ).toggleClass( "bounce" ), we get the following:

-

+      
+

The first time we apply $( "div.tumble" ).toggleClass( "bounce" ), we get the following:

+

 <div class="tumble bounce">Some text.</div>
-    
-

The second time we apply $( "div.tumble" ).toggleClass( "bounce" ), the <div> class is returned to the single tumble value:

-
<div class="tumble">Some text.</div>
-

Applying .toggleClass( "bounce spin" ) to the same <div> alternates between <div class="tumble bounce spin"> and <div class="tumble">.

-

The second version of .toggleClass() uses the second parameter for determining whether the class should be added or removed. If this parameter's value is true, then the class is added; if false, the class is removed. In essence, the statement:

-

+      
+

The second time we apply $( "div.tumble" ).toggleClass( "bounce" ), the <div> class is returned to the single tumble value:

+
<div class="tumble">Some text.</div>
+

Applying .toggleClass( "bounce spin" ) to the same <div> alternates between <div class="tumble bounce spin"> and <div class="tumble">.

+

The second version of .toggleClass() uses the second parameter for determining whether the class should be added or removed. If this parameter's value is true, then the class is added; if false, the class is removed. In essence, the statement:

+

 $( "#foo" ).toggleClass( className, addOrRemove );
-    
-

is equivalent to:

-

+      
+

is equivalent to:

+

 if ( addOrRemove ) {
   $( "#foo" ).addClass( className );
 } else {
   $( "#foo" ).removeClass( className );
 }
-    
-

As of jQuery 1.4, if no arguments are passed to .toggleClass(), all class names on the element the first time .toggleClass() is called will be toggled. Also as of jQuery 1.4, the class name to be toggled can be determined by passing in a function.

-

+      
+

As of jQuery 1.4, if no arguments are passed to .toggleClass(), all class names on the element the first time .toggleClass() is called will be toggled. Also as of jQuery 1.4, the class name to be toggled can be determined by passing in a function.

+

 $( "div.foo" ).toggleClass(function() {
   if ( $( this ).parent().is( ".bar" ) ) {
     return "happy";
@@ -69,17 +64,17 @@ $( "div.foo" ).toggleClass(function() {
     return "sad";
   }
 });
-
-

This example will toggle the happy class for <div class="foo"> elements if their parent element has a class of bar; otherwise, it will toggle the sad class.

-
- - Toggle the class 'highlight' when a paragraph is clicked. -
+

This example will toggle the happy class for <div class="foo"> elements if their parent element has a class of bar; otherwise, it will toggle the sad class.

+
+ + Toggle the class 'highlight' when a paragraph is clicked. + - - Click to toggle

highlight

on these

paragraphs

]]> -
- - Add the "highlight" class to the clicked paragraph on every third click of that paragraph, remove it every first and second click. - + + Add the "highlight" class to the clicked paragraph on every third click of that paragraph, remove it every first and second click. + - - Click to toggle (clicks: 0)

highlight (clicks: 0)

on these (clicks: 0)

paragraphs (clicks: 0)

]]> -
- - Toggle the class name(s) indicated on the buttons for each div. - - + + Toggle the class name(s) indicated on the buttons for each div. + div { float: left; width: 100px; @@ -156,7 +150,7 @@ $( "p" ).each(function() { background-color: cornsilk; } ]]> - @@ -171,7 +165,7 @@ $( "p" ).each(function() {
]]> - -
- - - - - - -
+ + + + + + + + + + + 1.4 + + A boolean value to determine whether the class should be added or removed. + + + +
This signature (only!) is deprecated as of jQuery 3.0.
+
+
+ \ No newline at end of file