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
Can't find anything built in to the validation library but this hack works:
$('#email').removeClass('error').next('label.error').remove();