aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/attributes.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/attributes.js b/src/attributes.js
index 3ae05421b..004c6b30c 100644
--- a/src/attributes.js
+++ b/src/attributes.js
@@ -12,14 +12,7 @@ jQuery.fn.extend({
return access( this, name, value, true, jQuery.attr );
},
- removeAttr: function( name ) {
- if ( jQuery.isFunction( name ) ) {
- return this.each(function(i) {
- var self = jQuery(this);
- self.removeAttr( name.call(this, i, self.attr(name)) );
- });
- }
-
+ removeAttr: function( name, fn ) {
return this.each(function(){
jQuery.attr( this, name, "" );
if ( this.nodeType === 1 ) {