I would like to do something similar, but instead of changing the errorPlacement, I would like to add specific error css classes to specific label classes.
like
- if(label.hasClass("foo")) {
addClass('bar')
}else{
addClass(error);
}
still new to this, but in essence i wanna be able to move diff error messages around independently of the rest.