aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2009-05-02 21:14:38 +0000
committerBrandon Aaron <brandon.aaron@gmail.com>2009-05-02 21:14:38 +0000
commit5e6e53835e552920db4f88ac0c9eca71aaacbef0 (patch)
tree14afe1d7091431973dcd39f2581be6a26114214d /src
parentd415e0adb8f89a00768091795860daa5f2c29835 (diff)
downloadjquery-5e6e53835e552920db4f88ac0c9eca71aaacbef0.tar.gz
jquery-5e6e53835e552920db4f88ac0c9eca71aaacbef0.zip
toggleClass can now toggle multiple classNames (space seperated list) and toggle the whole className. fixes #3825.
Diffstat (limited to 'src')
-rw-r--r--src/attributes.js22
1 files changed, 19 insertions, 3 deletions
diff --git a/src/attributes.js b/src/attributes.js
index d3dfb72da..04562ff8b 100644
--- a/src/attributes.js
+++ b/src/attributes.js
@@ -130,9 +130,25 @@ jQuery.each({
},
toggleClass: function( classNames, state ) {
- if( typeof state !== "boolean" )
- state = !jQuery.className.has( this, classNames );
- jQuery.className[ state ? "add" : "remove" ]( this, classNames );
+ var type = typeof classNames;
+ if ( type === "string" ) {
+ // toggle individual class names
+ var isBool = typeof state === "boolean", className, i = 0,
+ classNames = classNames.split( /\s+/ );
+ while ( (className = classNames[ i++ ]) ) {
+ // check each className given, space seperated list
+ state = isBool ? state : !jQuery.className.has( this, className );
+ jQuery.className[ state ? "add" : "remove" ]( this, className );
+ }
+ } else if ( type === "undefined" || type === "boolean" ) {
+ // toggle whole className
+ if ( this.className || classNames === false ) {
+ jQuery.data( this, "__className__", this.className );
+ this.className = "";
+ } else {
+ this.className = jQuery.data( this, "__className__" ) || "";
+ }
+ }
}
}, function(name, fn){
jQuery.fn[ name ] = function(){