Tested everything (from the posts above) in IE6 and IE7 and verified what you wrote apart from when I replaced:
<input type="submit" name="submit" value="Then the next time, click this">
with:
<INPUT TYPE="image" SRC="images/signup.png" HEIGHT="25" WIDTH="63" BORDER="0" ALT="Submit Form">
Tangoforce
Quote:
|
An image in place of a submit button has no value. The very code you show has no value to it and no it won't be sent.
|
Not true. In reality (in both IE6 and IE7) when I pressed enter it actually came back with:
Code:
Your data was processed!
Which indicates that it is sending some kind of value and the bug doesn't occur if you use an image!
This also avoids the second issue with javascript (described by felgall) because the image input type doesn't have a name field.
Would love to hear thoughts on this as this is the solution I have to use..