I have a jQuery function that i would like to execute only if the form validation is true I have the validation and other jQuery working fine. the problem is now b
You have to use .validate().form()
.validate().form()
if (!$("#myform").validate().form()) { return false; //doesn't validate }else { //form is validated do your work }