Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

One field on form, and "enter" key automatically submits

Status
Not open for further replies.

Drewst

MIS
Mar 26, 2001
4
0
0
US
Say I have one field on a form that users enter text into. When they press the enter key, the form is auto-submitted.

How do I disable the enter key from auto-submitting the form?

Thanks in advance
 
IE only:

onkeypress="if(window.event.keyCode==13)return false"

put this in the field, or in the form tag itself. jared@eae.net -
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top