I have a dynamic form with the following fields
<tr>
<td><input name = "qty[]" /></td>
<td><input name = "color[]" /></td>
<td><input name = "price[]" /></td>
<td><input name = "total[]" /></td>
</tr>
I can dynamically add as many rows as I want. What I would like to accomplish is having total = qty*price for each row with a click of a button. Any suggestions?