I want to call a jquery function to manually remove errors from a single field and reset the error markup. Is there a function that does this that would be similar to the reset
You can do the following to validate a single field:
$('#your_field').valid();
Maybe it will help someone :-)
Thanks!