I have found the solution :

jQuery.validator.setDefaults({
        onkeyup: function(element) {
            if (element.name == 'myField') {
                return true;
            }
            if ( element.name in this.submitted || element ==
this.lastElement ) {
                this.element(element);
            }
        }
}

If this can help ;-)

Reply via email to