diff options
Diffstat (limited to 'src/attributes.js')
-rw-r--r-- | src/attributes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/attributes.js b/src/attributes.js index 68e763e09..00e21af35 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -78,7 +78,7 @@ jQuery.fn.extend({ jQuery( this ).removeClass( value.call(this, j, this.className) ); }); } - if ( (value && typeof value === "string") || value === undefined ) { + if ( (value && typeof value === "string") || !arguments.length ) { removes = ( value || "" ).split( core_rspace ); for ( i = 0, l = this.length; i < l; i++ ) { |