I have a form with text input + gradient-shaded button with onclick=’this.form.submit()’ (plus some hidden inputs).
In all browsers, clicking on the button works.
In Firefox, if I click Enter while in text input, it submits the form.
In IE, it does nothing.
How can I make it work with IE?
If I remember correctly IE likes having an actual submit button, whether that’s an
<input type="submit" />or<button type="submit">submit me</button>. Maybe you can put that in there but “out of sight” so you don’t see it..