I set a rule for my email address field like so
$('#Email').rules("add", {
required: true,
email: true
});
but when I type in 'something@gmail.c' (using just 1 or 2 characters after the period) it shows it as valid (good). Is this a correct email extension reg ex or is something wrong here? It even validates to true with 'something@g' and then a tab is pressed!!!
here are some pics