I have this element
<tr class="group-row">
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
I want to clone it and add <tbody>
parent to it to be like this
<tbody>
<tr class="group-row">
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</tbody>