Skip to content

Instantly share code, notes, and snippets.

@muzafferkoluman
Created August 16, 2017 12:45
Show Gist options
  • Save muzafferkoluman/955805edda02fd7f64dfcc2b5b7405fb to your computer and use it in GitHub Desktop.
Save muzafferkoluman/955805edda02fd7f64dfcc2b5b7405fb to your computer and use it in GitHub Desktop.
email validator
$.validator.addMethod("email" , function(v) { return /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i.test(v); })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment