Wednesday, February 03, 2010

Prevent ENTER from submitting

* Include the following element into the head part of your document:

<script type="text/javascript">
function noenter() {
return !(window.event && window.event.keyCode == 13); }
</script>

* Add the following attribute into each input type="text" tag(s) in your form:
onkeypress="return noenter()"

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home