With this simple email rule:
$("#loginCliente").validate({
    rules: {
        loginNomEmail: { required: true, email: true },
    }
});
In this input field, if we enter "test@" we got the validate error. But if we enter "test@teste" the plugin show that is an valid email.
How I can validate this field only if it is an valid email ?


 
     
     
     
    