Skip to content

Instantly share code, notes, and snippets.

@anova
Created March 26, 2013 16:28
Show Gist options
  • Save anova/5246827 to your computer and use it in GitHub Desktop.
Save anova/5246827 to your computer and use it in GitHub Desktop.
Basic e-mail validation for input.
function e_mail_valid(email) {
var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
return reg.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment