I have the following table a column with established values and another column with the result of the multiplication of the values, and at the end of the table I have a cell which is the sum of the multiplication results ... I have tried in several ways, however I do not get success with the sum .. could help me ... is j-query
<table border="1">
<thead>
<tr>
<th>A</th>
<th>B</th>
<th>Resultado</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td><input type="text"></td>
<td></td>
</tr>
<tr>
<td>2</td>
<td><input type="text"></td>
<td></td>
</tr>
<tr>
<td>3</td>
<td><input type="text"></td>
<td></td>
</tr>
<tr>
<td></td>
<td>Suma de Resultado</td>
<td></td>
</tr>
</tbody>
</table>