I have the following table below:
<table class="table table-bordered table-hover" id="customFields">
<thead>
<tr>
</tr>
<tr>
<th width="20%">ID</th>
<th width="75%">Nome </th>
<th width="5%">Qnd.</th>
</tr>
</thead>
<tbody>
<tr valign="top">
</tr>
<tr valign="top" id="148">
<td class="text-center">148</td><input type="hidden" id="itemZone" value="148">
<td>PH_05</td>
<td>2560</td>
</tr>
<tr valign="top" id="149">
<td class="text-center">149</td><input type="hidden" id="itemZone" value="149">
<td>PH_04</td>
<td>2620</td>
</tr>
<tr valign="top" id="156">
<td class="text-center">156</td><input type="hidden" id="itemZone" value="156">
<td>PH_11</td>
<td>2476</td>
</tr>
<tr valign="top" id="155">
<td class="text-center">155</td><input type="hidden" id="itemZone" value="155">
<td>PH_14</td>
<td>2518</td>
</tr>
<tr valign="top" id="158">
<td class="text-center">158</td><input type="hidden" id="itemZone" value="158">
<td>PH_13</td>
<td>2668</td>
</tr>
<tr valign="top" id="154">
<td class="text-center">154</td><input type="hidden" id="itemZone" value="154">
<td>PH_12</td>
<td>2628</td>
</tr>
</tbody>
</table>
I would like to sum all the values of the <td>
of the column Qnd and show it below. What better way to do this?