When configure defaults options for the validator:
$.validator.setDefaults({
errorElement: "em"
});
and then simple using like:
$("form").validate({});
validator still uses label element and ignore errorElement em that configured in defaults!
What can i do in this case, of course putting errorElement for each instance of validator not a good idea?