You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<divclass="form-group"><divrole="radiogroup"><label><inputtype="radio" name="group" value="1" data-validetta="required" data-vd-parent-up="2" />
Group value 1
</label><label><inputtype="radio" name="group" value="2" data-validetta="required" data-vd-parent-up="2" />
Group value 2
</label></div><divclass="form-group group-1"><inputdata-validetta="required" \></div></div>
Validetta is running on that form. When I submit the form, new markup looks like (as expected):
<div class="form-group">
<div role="radiogroup">
<label>
<input type="radio" name="group" value="1" data-validetta="required" data-vd-parent-up="2" />
Group value 1
</label>
<label>
<input type="radio" name="group" value="2" data-validetta="required" data-vd-parent-up="2" />
Group value 2
</label>
</div>
<div class="form-group group-1">
<input data-validetta="required" \>
+ <div class="error-message">This field is required. Please be sure to check.</div>
</div>
+ <div class="error-message">This field is required. Please be sure to check.</div>
</div>
But when I submit the form second time, I getting this error on the browser console:
Uncaught DOMException: Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.
The text was updated successfully, but these errors were encountered:
Validetta is running on that form. When I submit the form, new markup looks like (as expected):
But when I submit the form second time, I getting this error on the browser console:
The text was updated successfully, but these errors were encountered: