Date:  07/11/2006 07:46:55 AM Msg ID:  003041
From:  Jeff Grippe Thread:  003041
Subject:  Validate Using AJAX Part 2
I have a form with a password text field and a submit button.
 
Thanks to your help I have figured out how to validate the password using AJAX without submitting the form.
 
I also figured out how to have the submit button disabled with entry of the correct password making it enabled (DISABLED=false).
 
My last problem is that even with the submit button disabled, the enter key from the password text box tries to submit the form. The onblur code from the text box executes after the onsubmit code from the form.
 
The result is that the user sees an "incorrect password" message even though the password has been entered and is correct. Then the password gets validated and the form is submitted.
 
Is there a way to prevent the ENTER key from submitting the form?
 
Thanks.