I use jquery.validate.js plugin to client-side validate forms - validation works fine - it highlights (adds classes) correctly, it even puts labels after each empty required field - but here comes the problem - it does not put any error messages into the labels.
How to make validation plugin to add the error messages inside the label tag?
I use default - no settings :
myForm = $("#myForm_id").validate();
SOLUTION: below as an answer :)