validate plugin access errorMap
Hi to all
is it possible to access the errorMap on success to know which fields are validate false so based on the fields that are validate right do a custom code i need to.
- success: function(element) {
var parent = element.parent();
parent.removeClass("error");
$(parent).children("p.errorField").remove();
//HERE i want to have access on errorMap
- //i need to know which field have pass validation and which fields are not
-
},