Skip to content

Instantly share code, notes, and snippets.

@kamal-github
Last active March 31, 2016 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kamal-github/f7626aa5706fb01976e3c3763809c182 to your computer and use it in GitHub Desktop.
Save kamal-github/f7626aa5706fb01976e3c3763809c182 to your computer and use it in GitHub Desktop.
jquery validate plugin - different trick when customizing
1) If you don't want to show error message -
`$('#form').validate({
errorPlacement: function(error,element) {
return true;
}
});`
`http://stackoverflow.com/questions/1578007/jquery-validate-hide-display-validation-error-messages-show-custom-errors`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment