diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-05-18 11:05:20 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-05-18 11:05:20 -0400 |
commit | 7d3ba9f89e8077dff96e4cd9784fda20625c38d6 (patch) | |
tree | 0c6fe7185bf801849a251c0f61c38f316f7e4c56 /src/attributes.js | |
parent | c17f589ec99e8309e813a4081eed47f39a0c6120 (diff) | |
download | jquery-7d3ba9f89e8077dff96e4cd9784fda20625c38d6.tar.gz jquery-7d3ba9f89e8077dff96e4cd9784fda20625c38d6.zip |
Switched title attribute to getAttributeNode for IE6/7. Fixes #9329.
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 a4cf76959..6353e6369 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -516,7 +516,7 @@ if ( !jQuery.support.getSetAttribute ) { jQuery.attrFix = jQuery.propFix; // Use this for any attribute on a form in IE6/7 - formHook = jQuery.attrHooks.name = jQuery.valHooks.button = { + formHook = jQuery.attrHooks.name = jQuery.attrHooks.title = jQuery.valHooks.button = { get: function( elem, name ) { var ret; ret = elem.getAttributeNode( name ); |