How to insert <div>in <td>using jQuery and put all child elements <td>in <div>?
Suppose I have HTML presented in the format below.
<td class="known_td">
<input ../>
<img ../>
</td>
Updated HTML should look like this:
<td class="known_td">
<div>
<input ../>
<img ../>
</div>
</td>
source
share