Skip to content

Instantly share code, notes, and snippets.

@mdsahib
Created November 28, 2014 04:44
Show Gist options
  • Save mdsahib/ecdbe7dd520218b56d1d to your computer and use it in GitHub Desktop.
Save mdsahib/ecdbe7dd520218b56d1d to your computer and use it in GitHub Desktop.
Jquery Validation Engine : Validated hooks usage
$("#insertYourFormIdHere").bind("jqv.form.result", function(event, errorFound) {
if(!errorFound){
console.log("There is a problem with your form");
iAmValidated();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment