aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes.js
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2011-04-10 17:11:35 -0400
committerjeresig <jeresig@gmail.com>2011-04-10 17:11:35 -0400
commit92dfb53314b4654826940eec3dc98aede92d4d49 (patch)
treee3fd015ba20d236c3592672e7839fa2df3424f0e /src/attributes.js
parentf89edbc6e4bd79aa1455e7b3a2e4767ce4371027 (diff)
parent215c507f796db16a6e9230a2ecc27c57a1b85280 (diff)
downloadjquery-92dfb53314b4654826940eec3dc98aede92d4d49.tar.gz
jquery-92dfb53314b4654826940eec3dc98aede92d4d49.zip
Merge branch 'attrhooks.1.6v2' of https://github.com/timmywil/jquery
Diffstat (limited to 'src/attributes.js')
-rw-r--r--src/attributes.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/attributes.js b/src/attributes.js
index 7868e08ed..c34cd6193 100644
--- a/src/attributes.js
+++ b/src/attributes.js
@@ -32,20 +32,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 ) ) {