diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2009-05-02 21:14:38 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2009-05-02 21:14:38 +0000 |
commit | 5e6e53835e552920db4f88ac0c9eca71aaacbef0 (patch) | |
tree | 14afe1d7091431973dcd39f2581be6a26114214d /src | |
parent | d415e0adb8f89a00768091795860daa5f2c29835 (diff) | |
download | jquery-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.js | 22 |
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(){ |