diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2009-03-17 22:27:25 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2009-03-17 22:27:25 +0000 |
commit | e73990a566fcb2dac71e1a25ec83382645adc5b7 (patch) | |
tree | 84990cb2f4a7c0d9a2c67ea9046ed04d47358d19 /test/index.html | |
parent | aabf635cfe9b75fce3d96eb3e40e25f4a29ea99b (diff) | |
download | jquery-e73990a566fcb2dac71e1a25ec83382645adc5b7.tar.gz jquery-e73990a566fcb2dac71e1a25ec83382645adc5b7.zip |
fix for #3688, setting type attribute on button causes IE to throw error
Diffstat (limited to 'test/index.html')
-rw-r--r-- | test/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/index.html b/test/index.html index 4c47d92a5..97d9d60b5 100644 --- a/test/index.html +++ b/test/index.html @@ -70,7 +70,7 @@ <input type="text" id="name" name="name" value="name" /> <input type="search" id="search" name="search" value="search" /> - <button id="button" name="button">Button</button> + <button id="button" name="button" type="button">Button</button> <textarea id="area1" maxlength="30">foobar</textarea> |