Created
November 28, 2014 04:44
-
-
Save mdsahib/ecdbe7dd520218b56d1d to your computer and use it in GitHub Desktop.
Jquery Validation Engine : Validated hooks usage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#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