I have a website: http://www.admiraltax.pl/zamow_darmowa_konsultacje
I tried to validate js e-mail address that could give 5 characters after the dot, eg. D4rqu@testowy.EMAIL.
Validator worked for me only max 4 characters,
I changed main.js, but it doesn't work :(
validEmail function (e-mail)
{
var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0- 9] {2,6}) + $ /;
if (filter.test (e-mail))
return true;
else
return false;
}