i want to enforce that my password should have a combination of alphabets ,digits and one special character.
if all three are present then only it shuld be valid.
if a user enters only digits as a password, it should not accept.
same for the alphabets.
i want to do the validation in javascript.
please suggest ASAP.