[jQuery] Plugins/Validation/validate is there a way to add css class to wrapper option?
I would like to wrap validation messages in <li class="error"/> with
validate plugin
is there any event or option I can handle to tweak the element before
it is appended?
I'm unsure if something like that would look ok:
$('form').validate({wrapper:"li.error"});
or either
$('form').validate({wrapper:"<li class='error'/>"});
Any work around is welcome.
Best regards