Skip to content

Instantly share code, notes, and snippets.

@gk3
Created May 30, 2014 14:53
Show Gist options
  • Save gk3/998cff59395fe8770285 to your computer and use it in GitHub Desktop.
Save gk3/998cff59395fe8770285 to your computer and use it in GitHub Desktop.
function validateEmail(email) {
var re = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
return re.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment