diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-04-11 19:30:20 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-04-11 19:30:20 -0400 |
commit | cb659c6054851dfcc52069885e7b7c0d17ee7097 (patch) | |
tree | 0c73b58fc4d3b3e4072b5389a7013acd09ee7856 /src/attributes.js | |
parent | 2b70893928035d53f46575003197e4a1fa52a844 (diff) | |
download | jquery-cb659c6054851dfcc52069885e7b7c0d17ee7097.tar.gz jquery-cb659c6054851dfcc52069885e7b7c0d17ee7097.zip |
retrieving list with getAttribute is fine, no need to add list here anymore
Diffstat (limited to 'src/attributes.js')
-rw-r--r-- | src/attributes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/attributes.js b/src/attributes.js index c34cd6193..5ccbf2cde 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -479,7 +479,7 @@ jQuery.each([ "selected", "checked", "readOnly", "disabled" ], function( i, name // Some attributes require a special call on IE if ( !jQuery.support.hrefNormalized ) { - jQuery.each([ "href", "src", "width", "height", "list" ], function( i, name ) { + jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { get: function( elem ) { var ret = elem.getAttribute( name, 2 ); |