validate plugin access errorMap

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.

  1. success: function(element) {
                     var parent = element.parent();
                    parent.removeClass("error");
                    $(parent).children("p.errorField").remove();    
                    //HERE i want to have access on errorMap



  2.                 //i need to know which field have pass validation and which fields are not

  3.             
               },