1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| <tr id="toto">
<td>
<input type="text" name="ref_0" >
</td>
<td>
<input type="text" name="designation_0"/>
</td>
<td>
<input type="text" name="qte_0" id="qté_0" onKeyup="check(0)"; onchange="total()"; onkeyup="total()";/>
</td>
<td>
<input type="text" name="pu_0" id="prix_0" onKeyup="check(0);" onchange="total()"; onkeyup="total()";/>
</td>
<td>
<input type="text" name="remise_0" id="remis_0" onKeyup="check(0);"onchange="total()"; onkeyup="total()";/>
</td>
<td>
<span id="result_0" </span>
</td>
<td>
<input type="button" value="Supprimer un produit" onclick="suppression(toto)"; >
</td>
</tr> |