diff --git a/src/attributes.js b/src/attributes.js index 9c868ee0..0a60b0d7 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -163,8 +163,8 @@ jQuery.fn.extend({ jQuery.each({ removeAttr: function( name ) { - jQuery.attr( this, name, "" ); - if (this.nodeType == 1) { + if ( this.nodeType === 1 ) { + this[ jQuery.isXMLDoc( this ) ? name : jQuery.props[ name ] || name ] = null; this.removeAttribute( name ); } }, diff --git a/src/event.js b/src/event.js index 26f414e2..018d4d98 100644 --- a/src/event.js +++ b/src/event.js @@ -680,7 +680,7 @@ function trigger( type, elem, args ) { if ( !jQuery.support.focusBubbles ) { jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ){ - event.special[ orig ] = { + jQuery.event.special[ orig ] = { setup: function() { jQuery.event.add( this, fix, ieHandler ); },