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
Hi! So, I noticed that if you try to append or prepend a form which contains a child form control with the name 'id', (such as in this minimal-ish example):
<form id="myform">
<input name="id">
</form>
...then the 'old' form is not removed when the new one is appended/prepended.
(Since myform.id will then refer to the named child control, not the form's id attribute, and the id match created previously to remove duplicates fails).
The text was updated successfully, but these errors were encountered:
Hi! So, I noticed that if you try to append or prepend a form which contains a child form control with the name 'id', (such as in this minimal-ish example):
...then the 'old' form is not removed when the new one is appended/prepended.
(Since
myform.id
will then refer to the named child control, not the form's id attribute, and the id match created previously to remove duplicates fails).The text was updated successfully, but these errors were encountered: