Skip to content

Instantly share code, notes, and snippets.

@psdtohtml5
Created March 19, 2013 00:05
Show Gist options
  • Save psdtohtml5/5192250 to your computer and use it in GitHub Desktop.
Save psdtohtml5/5192250 to your computer and use it in GitHub Desktop.
jQuery : Validate Email
function isValidEmail(email) {
return ( /(.+)@(.+){2,}\.(.+){2,}/.test(email) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment