Skip to content

Instantly share code, notes, and snippets.

@attilaking
Created May 20, 2020 10:39
Show Gist options
  • Save attilaking/742f7b68257dff9dcd9200df9c630feb to your computer and use it in GitHub Desktop.
Save attilaking/742f7b68257dff9dcd9200df9c630feb to your computer and use it in GitHub Desktop.
[Validate email] email validations #email #validate
function ValidateEmail(mail) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(mail)) {
return (true)
}
//alert("You have entered an invalid email address!")
return (false)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment