I'm having some trouble getting my JQuery Validation up to where I want. My errors display in a sidebox with an arrow. This can be achieved with a single 'wrapper'.
$('#loginform').validate({
errorPlacement: function(label, element) {
label.addClass('arrow');
label.insertAfter(element);
},
wrapper: 'span'
});
The issue is that unfortunately I have a box around my input fields, so the error should be placed over that border of that box. To do this, I need two wrappers. So my error should look like this:
<span class='errorContainer'>
<span class='arrow'>
<span class='error'>This is the actual error message.</span>
</span>
</span>
The current code gives me only this:
<span class='arrow'>
<span class='error'>This is the actual error message.</span>
</span>
$('<span class='errorContainer'></span>').insertAfter(element).append(label); – Arun P Johny Feb 23 at 11:55