my HTML look like this
<table>
<tr>
<td>Input 1</td>
<td>Input 2</td>
<td>Total</td>
<td> </td>
</tr>
<tr>
<td><input></td>
<td><input></td>
<td><input disabled></td>
<td><button value="add">Add</button></td>
</tr>
<tr>
<td> </td>
<td>Grand Total</td>
<td><input disabled ></td>
<td> </td>
</tr>
</table>
i`m trying to calculate between two input and can add new row after that using javascrtpt... pls help me..
ve got two input... for example input 1 = 10 input 2 = 2 total = sum of input 1 + input 2 if i press add button, im able to add new row and make another calculation.. thanks