diff options
author | jeresig <jeresig@gmail.com> | 2011-04-12 00:05:21 -0400 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2011-04-12 00:05:21 -0400 |
commit | 0fa0f4cf020eb4685dd41b51cf04db078944d04f (patch) | |
tree | 647534e0cd97f2fc18e03b031d85a102f4e7bff5 | |
parent | 98da6b13bcc77dc117c68686ef4ed305bd83d400 (diff) | |
parent | cb659c6054851dfcc52069885e7b7c0d17ee7097 (diff) | |
download | jquery-0fa0f4cf020eb4685dd41b51cf04db078944d04f.tar.gz jquery-0fa0f4cf020eb4685dd41b51cf04db078944d04f.zip |
Merge branch 'attr_remove_list_check' of https://github.com/timmywil/jquery into timmywil-attr_remove_list_check
-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 ); |