From 103d3258876fb55316713ab3e4e743b2f8def54a Mon Sep 17 00:00:00 2001 From: timmywil Date: Tue, 19 Apr 2011 17:48:07 -0400 Subject: [PATCH] Follow w3c standard for setting the common boolean attributes to the same name(selected, checked, readOnly, and disabled) --- src/attributes.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/attributes.js b/src/attributes.js index d163469c..ac832591 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -473,7 +473,10 @@ if ( !jQuery.support.getSetAttribute ) { jQuery.each([ "selected", "checked", "readOnly", "disabled" ], function( i, name ) { jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { set: function( elem, value ) { - if ( value === false ) { + if ( value === true ) { + elem.setAttribute( name, name ); + return value; + } else if ( value === false ) { jQuery.removeAttr( elem, name ); return value; }