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
Use the Validator errorPlacement option with an empty function:
$("selector").validate({ errorPlacement: function(error, element) {} });
This effectively places the error messages nowhere.