mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Non-existent attribute for jQuery.attr no longer needs to check for "undefined"
- Remove an unnecessary var - Use variable in removeAttr for better minification
This commit is contained in:
parent
dfeeb872d6
commit
11cfdb2394
@ -317,12 +317,12 @@ jQuery.extend({
|
||||
return ret;
|
||||
|
||||
} else {
|
||||
var attr = elem.getAttribute( name );
|
||||
ret = elem.getAttribute( name );
|
||||
|
||||
// Non-existent attributes return null, we normalize to undefined
|
||||
return attr === null || attr === "undefined" || attr === "null" ?
|
||||
return ret === null || ret === "null" ?
|
||||
undefined :
|
||||
attr;
|
||||
ret;
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -336,7 +336,7 @@ jQuery.extend({
|
||||
// set property to null if getSetAttribute not supported (IE6-7)
|
||||
// setting className to null makes the class "null"
|
||||
if ( name === "className" ) {
|
||||
elem.className = "";
|
||||
elem[ name ] = "";
|
||||
} else {
|
||||
elem.setAttribute( name, null );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user