Skip to content

Instantly share code, notes, and snippets.

@justinallen
Created October 7, 2015 18:57
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 justinallen/1eda52797ee54397f32a to your computer and use it in GitHub Desktop.
Save justinallen/1eda52797ee54397f32a to your computer and use it in GitHub Desktop.
quick basic email validation in javascript
// returns false unless valid
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