How do I turn off the displaying of "this field is required" for ALL of my input text boxes? I'd rather not have to do something like this:
$("myForm").validate({
messages: { myField1: { required: '' }, myField2: { required: '' }, myField3: { required: '' }}
});
You can simply set the default required message to empty string.
$.validator.messages.required = '';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With