Snippet Name: Prevent the 'enter' key from submiting a form:
Description: Simple way to prevent the 'enter' key from submitting a form.
Comment: (none)
Language: JAVASCRIPT
Highlight Mode: HTML4STRICT
Last Modified: February 28th, 2009
|
<FORM ONSUBMIT="return false">
<INPUT TYPE="button" VALUE="My special submit button" ONCLICK="this.form.submit()">
</FORM> |