I have this table which contains essential information about my book cart
<table style="width:100%">
<tr>
<th>School No</th>
<th>Resource Type</th>
<th>Resource No.</th>
<th>Resource Title</th>
<th>Quantity</th>
</tr>
<tr>
<td>201912621</td>
<td>Book</td>
<td>099918723</td>
<td>Sample Title</td>
<td>10</td>
</tr>
</table>
To make it short how can I read each row in my table and ouput it like this in jquery.
var row1= $("#SchoolNo").val();