Skip to content

Instantly share code, notes, and snippets.

@aliirz
Created November 5, 2013 11:53
Show Gist options
  • Save aliirz/7317976 to your computer and use it in GitHub Desktop.
Save aliirz/7317976 to your computer and use it in GitHub Desktop.
Javascript email validation checker
tab.emailValidation = function checkMail(email) {
var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
if (filter.test(email)) {
return true;
}
return false;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment