JQuery Validation for Email
Sometimes the default validation options that you use in JQuery Validation Plugin do not have all the bells and Whistles. I have found that using the out-of-box templates will cover most of the rules you want. But in this case I have found that you may need to make sure it will require a .com at the end of the email. Here is the custom Regex I use for my email fields:
So this will expect the email to look like this:
But also you would have to apply as a custom rule in your your validation rule step, as listed below:
Then in your options.rules
section add this:
This showcases creating a custom rule for a possible out of box feature not in JQuery Validation Framework.