From 3f47d3b8f5b2623a3bf289ad4446d0eafd12413d Mon Sep 17 00:00:00 2001 From: John Resig Date: Thu, 31 Aug 2006 04:27:30 +0000 Subject: [PATCH] Fixed issue with .attr( "disabled", false ) not working properly. --- src/jquery/jquery.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index fc3d551..28f4825 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1268,7 +1268,8 @@ jQuery.extend({ "float": "cssFloat", innerHTML: "innerHTML", className: "className", - value: "value" + value: "value", + disabled: "disabled" }; if ( fix[name] ) { -- 1.7.10.4