diff options
author | John Resig <jeresig@gmail.com> | 2006-08-31 04:16:23 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-31 04:16:23 +0000 |
commit | a4ec609b6a52a3c0f791d5426c1a5816b23e6956 (patch) | |
tree | 9f1087c047c0015b52639f404f23afe9d584f8b9 /src | |
parent | 6ceecc520a2b521dedce47f83c954727299b6653 (diff) | |
download | jquery-a4ec609b6a52a3c0f791d5426c1a5816b23e6956.tar.gz jquery-a4ec609b6a52a3c0f791d5426c1a5816b23e6956.zip |
Fixed issue with .val() not working properly.
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery/jquery.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index d40335b8b..c8605d985 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1266,7 +1266,8 @@ jQuery.extend({ "class": "className", "float": "cssFloat", innerHTML: "innerHTML", - className: "className" + className: "className", + value: "value" }; if ( fix[name] ) { |