for password validation i am using equalTo:\"#password\" Whether it is possible to check some sting by giving as equalTo:\"string to check\" in jqu
equalTo:\"#password\"
equalTo:\"string to check\"
Override the equalTo: with below function
equalTo: function(element) { if( ( $("#password").val() == "Your String Value Here" ) { return true; }else{ return false; }