I have the following scenario: I want to append the input field to a different parent. The code looks like this
<div id="id1">
<div id="id2">
<input type="radio">
</div>
</div>
I want to append the input field to "id1" and delete the "id2". The final result should look like this
<div id="id1">
<input type="radio">
</div>
