Skip to content

Instantly share code, notes, and snippets.

@fleimisch
Created February 26, 2015 16:33
Show Gist options
  • Select an option

  • Save fleimisch/1dca14df989cea357460 to your computer and use it in GitHub Desktop.

Select an option

Save fleimisch/1dca14df989cea357460 to your computer and use it in GitHub Desktop.
JS Validate Email
function IsEmail(email) {
var regex = /^([a-zA-Z0-9_\.\-\+])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
return regex.test(email);
};
if(IsEmail($('#EmailAddress').val())==false){
/* Do Stuff */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment