-1

Have been researching for a few days for a from that can simply add the totals of the sales values and output a grand total. Using this as a simple sales submission form. The problem is that the form doesn't add, include or calculate the cents.

I found the form on a previous question: How get total sum from input box values using Javascript?

Was wondering how could the form be updated to also include dollars and cents in the total value?

Thank-you in advanced.

Community
  • 1
  • 1
  • Your question is not very clear. I hope my answer is what you're looking for. – Skwal Jan 28 '14 at 22:28
  • @Skwal My apologies. Found the form and it worked well but I wasn't sure what part of the from had to be changed in order for the form to calculate and include cents. – CreativeLatino Jan 28 '14 at 23:57

1 Answers1

0

You need to replace the parseInt() with parseFloat() so that it keeps the decimals.

Skwal
  • 2,160
  • 2
  • 20
  • 30