Hello, I have a field that use the 'remote' option to call a server side script to check the field value.
If the field value is wrong, after each new key pressed, the remote server side is called. This could be very ennoying and increase the load on our server. There is a way to disable the "onkeyup" event only for a specific field ? I have tried : jQuery.validator.setDefaults({ myField: { onkeyup: false, remote: 'myScript.php', } }); And also tried : jQuery.validator.setDefaults({ myField: { remote: 'myScript.php', }, onkeyup: { myField: false } }); but this doesn't works... Thanks in advance for your advices.