loop html table using jquery and for loop (not for each)
- by Mandeep Singh
I have a HTML table
<table id="mytab">
<thead>
<th>col1</th>
<th>col2</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>11</td>
<td>22</td>
</tbody>
</table>
and i…