Clinton Posted September 11, 2007 Share Posted September 11, 2007 I have a form. If I put in 5 for 'Quantity' and '1.00' for UnitCost when I go to TotalCost I want it to automatically compute the total. In this case 5.00. Make sense? How do I do this? <tr><td>Quantity:</td><td> <input type="text" name="Quantity"> </td></tr> <tr><td>Unit Cost:</td><td> <input type="text" name="UnitCost"> </td></tr> <tr><td>Total Cost:</td><td> <input type="text" name="TotalCost"> </td></tr> --- P.S. I found this which is probably what I want but I'm not sure how to modify it for my purposes: <script language="javascript1.1"> function summate() { var tot=0 for (var i=1; i <= 5; i++) { var id = "txt"+i; tot = tot + document.getElementById(id).value*1; } document.getElementById("tot").value = tot; } </script> Link to comment https://forums.phpfreaks.com/topic/68898-text-box-calculation/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.