Skip to content

Instantly share code, notes, and snippets.

@andyf-7
Created May 3, 2015 10:31
Show Gist options
  • Save andyf-7/ecf12deb263e6bfdece1 to your computer and use it in GitHub Desktop.
Save andyf-7/ecf12deb263e6bfdece1 to your computer and use it in GitHub Desktop.
jqeury Mail validation in client side
function ValidateEmail(email) {
var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
return expr.test(email);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment