for password validation i am using equalTo:"#password" Whether it is possible to check some sting by giving as equalTo:"string to check" in jquery.validate
for password validation i am using equalTo:#password Whether it is possible to check some
Share
equalToonly takes a selector here, but you can make a custom method for the check you want:Then you can use the a rule with the same name:
You can test it here.