I\'m using the jQuery Validation plugin and want to disable the or element/container it creates to display the error \'message\'.
Basically, I want the input element wi
You can add an onfocus and an onkeyup that would remove the error message.
$("selector").validate({ onkeyup: false, onfocusout: false });