Skip to content

Instantly share code, notes, and snippets.

@yeungon
Last active June 28, 2017 04:20
Show Gist options
  • Save yeungon/a40ebcf2d10210a757ceeac327760c92 to your computer and use it in GitHub Desktop.
Save yeungon/a40ebcf2d10210a757ceeac327760c92 to your computer and use it in GitHub Desktop.
validate email
function validateEmail(strEMail) {
//Validating the email field
var reg = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
if (!strEMail.match(reg)) {
return (false);
}
return(true);
}
// source: http://1tudien.com/js/warning.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment