The return value from $("#myform").validator() is an object, is there a method in Jquery-Tools Validator like boolean $("#myform").isValid()?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
checkValidityis not a method of the jQuery object. It’s a method of the thevalidatorinstance stored in the element’s.dataof the form (or input) element which you bound the validator to. Use:To get the boolean representing the form’s validity.
Fiddle