mirror of
https://github.com/jquery/jquery.git
synced 2026-02-06 00:15:08 -05:00
Make setting .css(name, undefined) a no-op. Fixes #4388.
This commit is contained in:
@@ -20,6 +20,11 @@ var ralpha = /alpha\([^)]*\)/,
|
||||
};
|
||||
|
||||
jQuery.fn.css = function( name, value ) {
|
||||
// Setting 'undefined' is a no-op
|
||||
if ( arguments.length === 2 && value === undefined ) {
|
||||
return this;
|
||||
}
|
||||
|
||||
return jQuery.access( this, name, value, true, function( elem, name, value ) {
|
||||
return value !== undefined ?
|
||||
jQuery.style( elem, name, value ) :
|
||||
|
||||
Reference in New Issue
Block a user