That answer really helped me, in my case i had to filter some elements out and have special aligment on their error div,
errorPlacement:function(error,element) {
if (element.attr("id") == "special_element") {
// special align
} else { // default error scheme
error.insertAfter(element);
}
}