Posts Tagged: disable


7
Jan 08

How to Disable “Enter” action to submit a form

this is how to disable the Enter action on submitting a form, and forcing the user to click submit button

1
2
3
4
5
<form name="formName" method="??" action="??">
<input />
<input value="Submit" onclick="formName.submit()" type="button" />
</strong>
</form>
  • Share/Bookmark