I have been developing a script and I\'m stumped right now. I have tried many different Regex from Google and non have worked, this is my code:
$(document).r
Set the case insensitive flag (i):
var email_check = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,6}$/i;
You could skip writing the regex and use the jQuery validation plugin for this task. There's an example here of validating an email address.