I'm using IE browser. All the codes are written in PHP and HTML. Sometimes my applicants hit the enter button accidetally and the page submit automatically and goes to other page. Anyone know how to eliminate enter button from submission? Thanks.
mikefn
I do. What I don't know is how they're supposed to submit the form after you take that button away from them.
Anyway, remove the line <input type=submit ... >
Luciano ES Santos, SP - Brasil
Sound like form validation would save you.
have a validation process that verifies all required fields are complete and contian valid data prior to continuing.
Cheers.
Wade
As Luciano suggested, remove the input type="submit", and have a button with a javascript onclick event for form validation and if succesful, form.submit().
The enter should allowed to be disabled with html also, but unfortunately isn't so.
.samuli