Skip to content

Instantly share code, notes, and snippets.

@syammohanmp
Created December 7, 2016 09:14
Show Gist options
  • Save syammohanmp/807fe9e2729ec9542fbeaeaff91396dc to your computer and use it in GitHub Desktop.
Save syammohanmp/807fe9e2729ec9542fbeaeaff91396dc to your computer and use it in GitHub Desktop.
Validate email address using JavaScript
function validateEmail(sEmail) {
var filter = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
if (filter.test(sEmail)) {
return true;
}
else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment