Okay guys,
I have read through all the other posts and question on jquery validation plugin and they don't seem to have what i'm looking to do.
I would like to have the display error not show with message but just create a red border around the input field instead.
Here is just some of the form:
<form id="donate_form" name="checkoutForm" method="post">
<label class="desc" id="title0" for="billing_name_first">
Name
<span id="req_1" class="req">*</span>
</label>
<div>
<span class="left">
<input name="billing.name.first" id="billing_name_first" type="text" class="field text required" value="" tabindex="1" />
<label for="billing_name_first">First</label>
</span>
<span class="right">
<input name="billing.name.last" id="billing_name_last" type="text" class="field text required" value="" tabindex="2" />
<label for="billing_name_last">Last</label>
</span>
</div>
I am assuming that I need to place the class required on the input??
Then with CSS hide the label.error which is spit out by the plugin? I've tried that but no go.
Am I looking in the right place?
Thanks!