diff options
Diffstat (limited to 'src/attributes.js')
-rw-r--r-- | src/attributes.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/attributes.js b/src/attributes.js index f7c2e9818..eca7f3478 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -33,20 +33,6 @@ jQuery.fn.extend({ } catch( e ) {} }); }, - - prop: function( name, value ) { - return jQuery.access( this, name, value, true, jQuery.prop ); - }, - - removeProp: function( name ) { - return this.each(function() { - // try/catch handles cases where IE balks (such as removing a property on window) - try { - this[ name ] = undefined; - delete this[ name ]; - } catch( e ) {} - }); - }, addClass: function( value ) { if ( jQuery.isFunction( value ) ) { |