I use the HTML code. I have a table and I write in first tr td "A" and "B" in second tr td I have these two rows but I want to print "B" in first tr and "A" in second !! But I don't want to change my th position!! Is it possible with any script like js or Jquery or with any type js CDN....??
<table id='table1'>
<tr>
<th>name</th>
</tr>
<tr>
<td>A</td>
</tr>
<tr>
<td>B</td>
</tr>
</table>