Skip to content

Instantly share code, notes, and snippets.

@TheHiddenHaku
Last active December 25, 2015 09:09
Show Gist options
  • Save TheHiddenHaku/6951616 to your computer and use it in GitHub Desktop.
Save TheHiddenHaku/6951616 to your computer and use it in GitHub Desktop.
Javascript email check function
function isEmail(email) {
var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
if(reg.test(email) == false) {
return false;
}
else
{
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment