Last active
June 28, 2017 04:20
-
-
Save yeungon/a40ebcf2d10210a757ceeac327760c92 to your computer and use it in GitHub Desktop.
validate email
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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