RE: form user interface issue

2003-04-02 Thread Hughes, Andrew
" Thanks, Andrew -Original Message- From: Octavian Rasnita [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:01 AM To: Hughes, Andrew; [EMAIL PROTECTED] Subject: Re: form user interface issue That form probably has a submit button that has a parameter name="...&

Re: form user interface issue

2003-04-01 Thread Octavian Rasnita
That form probably has a submit button that has a parameter name="...". The script might be checking for that param('...'). If the form is submitted by pressing the button, that parameter from the submit button is sent to the server while if the form is submitted by pressing enter from another for

RE: form user interface issue

2003-04-01 Thread Bill Burke
Maybe the button dosen't have focus when the enter key is hit. This added to your javascript may help function check_email_onkeypress() { if ("13" == window.event.keyCode) { form.submit(); } } Also, I usually use the name attribute for the form. Like If you do t