Have to click twice to submit the form in IE8

Posted by phil on Stack Overflow See other posts from Stack Overflow or by phil
Published on 2010-06-11T10:07:07Z Indexed on 2010/06/11 23:32 UTC
Read the original article Hit count: 272

Filed under:
|

A very peculiar bug in a simple html form. After changing an option, button has to be clicked twice to submit the form. Button is focused after clicking once, but form is not submitted. It's only this way in IE8 and works fine in Chrome and FF.

PAY ATTENTION TO 'g^' right before <select>. It has to be a letter or number followed by a symbol to generate this bug. For example, 'a#','f$','3(' all create the same bug. Otherwise it works fine. BTW, if you don't change option and click button right away,there won't be any bug.

Very strange, huh?

<form method="post" action="match.php">
g^
<select>
<option>Select</option>
<option>English</option>
<option>French</option>
</select>

<input type="submit" value="Go" />
</form>

© Stack Overflow or respective owner

Related posts about html

Related posts about form