Skip to content

Instantly share code, notes, and snippets.

@codeb2cc
Created December 22, 2011 12:04
Show Gist options
  • Save codeb2cc/1510076 to your computer and use it in GitHub Desktop.
Save codeb2cc/1510076 to your computer and use it in GitHub Desktop.
Email Validator
function validEmail(email){
var emailReg = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
return emailReg.test(email);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment