Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6607869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:32:58+00:00 2026-05-25T19:32:58+00:00

I have an html form that I want to have generate a running total

  • 0

I have an html form that I want to have generate a running total at the bottom of the form. I also want to do some other simple calculations but I am unable to find anything about doing simple calculations using javascript.i dont want someone to do this for me I just want someone to point me in the right direction aka what how to create a function to multiple a quantity times a price and add more then one to create a total.

Rough example:

 <input type="text" name="qty1" onchange=""> <input type="text" name="price1" onchange="something">
 <input type="text" name="qty2" onchange=""> <input type="text" name="price2" onchange="something">

and the total would be like this

=(qty1*price1)+(qty2*price2) and so on and i want place this number in my sql db when submited

I hope this isn’t to difficult to explain.

I also want to skip fields with no entry.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T19:32:59+00:00Added an answer on May 25, 2026 at 7:32 pm

    Here’s how do it if you want to use jQuery:

    HTML:

    <div>
        <input type="input" class="qty" />
        <input type="input" class="price" />
    </div>
    <div>
        <input type="input" class="qty" />
        <input type="input" class="price" />
    </div>
    <div>
        <input type="input" class="qty" />
        <input type="input" class="price" />
    </div>
    Total: <span id="total"></span>
    

    JavaScript:

    jQuery(function($) {
    
    $(".qty, .price").change(function() {
        var total = 0;
        $(".qty").each(function() {
            var self = $(this),
                price = self.next(".price"),
                subtotal = parseInt(self.val(), 10) * parseFloat(price.val(), 10);
            total += (subtotal || 0);
        });
        $("#total").text(total);
    });
    
    });
    

    Basically, any time a price or quantity is changed, you enumerate each quantity input. You get the price value by finding the next sibling with the price class (assumes your price field is after the quantity field and is at the same level in the document). Then parse their values — parseInt() for the quantity, and parseFloat for the price. The 10 argument is to force the radix to base 10 since js is known to ‘guess’ and will accept hex values, for example. If the calculation couldn’t be done because the value wasn’t a number, subtotal will be NaN. I “or” that with 0 so I don’t try to add NaN to the total. Finally, I put the result into the total field.

    You said you want to save the total somewhere. You need to do that on the server with PHP, don’t post the value from the client. Any value posted by the client, whether it’s a hidden field or not, can be spoofed by the client. You can’t trust it. So calculate it on the server from the posted fields.

    jsfiddle:

    http://jsfiddle.net/nCub9/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class that generates some html (form elements and table elements), but
I have a html form with no submit button. I want to submit that
I have a simple html form that looks like the following <form action=search.php method=get>
I have a simple html form that is structured something like this: <form name=test
I have fairly complex HTML document to generate that is of the form <head>
I have a following problem, I have HTML form that uploads a file with
I have a HTML form that has certain fields which i am opening inside
I have a HTML form that accepts a comma separated list of tags, which
I have a html form that posts to a new page on submit. If
I have an HTML form that needs multiple submit buttons, like this: <input type=submit

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.