Skip to content Skip to sidebar Skip to footer

Checking Password Onsubmit

I have a basic signup form:
Email Address:

Solution 1:

It needs to be

<form...onsubmit="return passwordCheck();">

as for the onkeydown, check that your checkPassword() function is actually being called. have it do an alert() or something similar.

Solution 2:

Post a Comment for "Checking Password Onsubmit"