I have a background in graphic design rather than programming, but I decided to tackle creating an online form webpage by following some tutorials.
One dilemma I'm facing is how to calculate prices within the table for both the distributor and the public. It seems quite complex.
I attempted to incorporate cwolves' solution into the code, but it's causing conflicts with my submit button. Is there a way for the calculations to appear automatically below the table without needing a button?
You can view the table here: http://jsfiddle.net/87JpK/
<table border="0" cellspacing="3" cellpadding="0">
<tr>
<td width="125" height="30"><div align="left"><em3> Product's Name</em3></div></td>
<td width="85"><div align="left"><em3>Volume ml</em3></div></td>
<td width="110"><div align="left"><em3>Distributor</em3></div></td>
<td width="110"><div align="left"><em3>Public</em3></div></td>
<td width="200"><div align="left><em3>Quantity (1 Pack=10 Units)</em3></div></td>
</tr>
<!-- More table rows -->
</table>
Thank you in advance for your help!