From: timmywil Date: Wed, 30 Mar 2011 21:13:15 +0000 (-0400) Subject: Move the check for the name attribute out of attr and down to the formHook definition X-Git-Tag: 1.6b1~27^2~11 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1e9b3ef3d87a0934dec969ed469cd3cc9c910ae8;p=jquery.git Move the check for the name attribute out of attr and down to the formHook definition --- diff --git a/src/attributes.js b/src/attributes.js index e80fede93..f03985590 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -301,7 +301,7 @@ jQuery.extend({ // Get the appropriate hook, or the formHook // if getSetAttribute is not supported and we have form objects in IE6/7 - hooks = jQuery.attrHooks[ name ] || ( ( name === "name" || elem.nodeName === "FORM" ) && formHook ); + hooks = jQuery.attrHooks[ name ] || ( elem.nodeName === "FORM" && formHook ); if ( value !== undefined ) { @@ -426,7 +426,7 @@ if ( !jQuery.support.getSetAttribute ) { // Use this for any attribute on a form in IE6/7 // And the name attribute - formHook = { + formHook = jQuery.attrHooks.name = { get: function( elem, name ) { var ret = elem.getAttributeNode( name ); // Return undefined if not specified instead of empty string