Apr 5, 2001 #1 Drewst MIS Mar 26, 2001 4 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
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
Apr 5, 2001 #2 jaredn Programmer Sep 1, 1999 1,506 US IE only: onkeypress="if(window.event.keyCode==13)return false" put this in the field, or in the form tag itself. jared@eae.net - http://webfx.eae.net Upvote 0 Downvote
IE only: onkeypress="if(window.event.keyCode==13)return false" put this in the field, or in the form tag itself. jared@eae.net - http://webfx.eae.net