This is a follow on to my previous question:
JSP / servlet / IE combination doesn’t submit form detail on Enter
Inside the form, we have:
<input ... type="submit" name="confirm" value="Confirm"/>
There are no input fields on this form. This form appears at the end of a workflow and is essentially a verification to proceed.
This form is not submitted to either IE or Firefox when the Enter key is pressed. It works perfectly if the "Confirm" button is pressed.
Following on the answer to my previous question, I have tried adding dummy fields such as:
<input type="hidden" />
or
<input type="text" style="display: none;" />
but they make no difference.
For various reasons, we would prefer not to use Javascript.
Any suggestions to get the Enter key to submit?