Skip to content

Instantly share code, notes, and snippets.

@dviramontes
Last active December 26, 2015 04:09
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 dviramontes/7091197 to your computer and use it in GitHub Desktop.
Save dviramontes/7091197 to your computer and use it in GitHub Desktop.
email validation with jquery plugin
// validate email address
$("#ss-form").validate({
// validate rule
rules : {
email : {
required: true,
email: true
}
},
// msg to be displayed on input error
messages : {
email: "Please enter a valid email address"
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment