aboutsummaryrefslogtreecommitdiffstats
path: root/src/attributes.js
diff options
context:
space:
mode:
authortimmywil <tim.willison@thisismedium.com>2011-05-18 11:05:20 -0400
committertimmywil <tim.willison@thisismedium.com>2011-05-18 11:05:20 -0400
commit7d3ba9f89e8077dff96e4cd9784fda20625c38d6 (patch)
tree0c6fe7185bf801849a251c0f61c38f316f7e4c56 /src/attributes.js
parentc17f589ec99e8309e813a4081eed47f39a0c6120 (diff)
downloadjquery-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.js2
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 );