Skip to content

Instantly share code, notes, and snippets.

@ktroye
Created July 16, 2013 11:34
Show Gist options
  • Select an option

  • Save ktroye/6007958 to your computer and use it in GitHub Desktop.

Select an option

Save ktroye/6007958 to your computer and use it in GitHub Desktop.
Javascript: Email validation
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