I have a html table
<table class="items">
<tr>
<td>test1</td>
<td>test2</td>
<td>test3</td>
</tr>
</table>
I want to get its inner html through class in JQuery
$(".items").html();
this is getting table content but not the whole styling. any solution?