As for the post here , how to remove these errors after they are displayed and resolved?
I added an error via:
var errorArray = {};
errorArray["Slug"] = 'Some error message for the Slug text box';
$('#SomeFormId').validate().showErrors(errorArray);
But I can not get errors to clear after form ajax post.
source
share