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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can

Status
Not open for further replies.
Hello Zolah,

It looks to me like validEmail() and submitIt()are not called.

You don't need submitIt(), just put that block of code inside validForm(). validForm() will check three conditions
1. is the password field empty
2. was the password entered the same both times
3. was a plausible email address entered.

if all three conditions are true the form will be submitted.

Hope this helps,
Richard
 
Also there are problems with searching for ".", I have had this trouble too, if you search for "@" instead, I bet it will work.

You'll need to make a goof RegExp to cope with the dot.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top