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 also use this code:
jQuery.validator.messages.required = ""; $("selector").validate();