I'm using parsley (parsleyjs.org) validation but after a field got validated, an empty element remains in the DOM. How can I remove it?
It seems to be a Parsley bug: Parsley should remove the error container if there are no errors anymore.
Thank you. Lui
parsley
chooses to keep that<div>
around by design, but you can rely on it's classfilled
being present or not in your CSS. In short, your CSS rules that use.parsley-errors-list
should read as.parsley-errors-list.filled
.