Hi guys,
I'm working with the jQuery Validation plugin and I wrote the following code which adds a class to the element's (<input>
) parent (<label>
) if not valid, as well as inserting the actual error element (<span>
) before the <br>
.
the HTML ...
<label>
text<br><input>
</label>
... and the jQuery.
$("#form_to_validate").validate({
rules: {
...
},
errorElement: "span",
errorPlacement: function(error, element) {
element.parent().addClass('error');
error.insertBefore(element.parent().children("br"));
}
});
So, if a form element doesn't validate, it turns into:
<label class="error">
text<span>error text</span><br><input>
</label>
This works great, however, if a field's content is corrected and becomes valid, the class obviously doesn't get removed from its parent (actually, neither does the error element, instead it just gets a display: none;
CSS property). How can I check if an element becomes valid and remove its parent class if so ?
Any help would be greatly appreciated !
Edited: Added more information.