I have a button. When I click on it I want to take HTML from a div. This div contains some table rows.
Tiny markup
<div class="new">
<tr>
<td><strong>New</strong></td>
<td>Hi</td>
</tr>
</div>
When I want to take the HTML and put it in a table something go wrong.
What I get from $('.new').html()
<strong>New</strong>
hi
It looks like jQuery does not take the <tr><td> parts.
Does anyone know how to achieve this?


<tr>tag inside adivwithouttabletag? – arulmr Dec 18 '12 at 8:43