Move the if statement in jQuery.fn.removeAttr to jQuery.removeAttr

- Extra testing on removeAttr and IE form weirdness( all good )
This commit is contained in:
timmywil 2011-04-03 16:49:48 -04:00
parent ff75767558
commit 2a8a2b6148

View file

@ -16,9 +16,7 @@ jQuery.fn.extend({
removeAttr: function( name ) {
return this.each(function() {
if ( this.nodeType === 1 ) {
jQuery.removeAttr( this, name );
}
jQuery.removeAttr( this, name );
});
},
@ -335,15 +333,17 @@ jQuery.extend({
},
removeAttr: function( elem, name ) {
name = jQuery.attrFix[ name ] || name;
if ( elem.nodeType === 1 ) {
name = jQuery.attrFix[ name ] || name;
if ( jQuery.support.getSetAttribute ) {
elem.removeAttribute( name );
} else {
// Set to default empty string
elem.setAttribute( name, "" );
// Attempt to remove completely with DOM level 1
elem.removeAttributeNode( elem.getAttributeNode( name ) );
if ( jQuery.support.getSetAttribute ) {
elem.removeAttribute( name );
} else {
// Set to default empty string (No longer need to use attr for this)
elem.setAttribute( name, "" );
// Attempt to remove completely with DOM level 1
elem.removeAttributeNode( elem.getAttributeNode( name ) );
}
}
},