Switched title attribute to getAttributeNode for IE6/7. Fixes #9329.

This commit is contained in:
timmywil 2011-05-18 11:05:20 -04:00
parent c17f589ec9
commit 7d3ba9f89e
2 changed files with 7 additions and 5 deletions

View file

@ -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 );