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 7891809
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:42:44+00:00 2026-06-03T06:42:44+00:00

i have some input fields <input type=text name=quantity[] class=est_quantity placeholder=quantity/> <input type=text name=quantity[] class=est_quantity

  • 0

i have some input fields

<input type="text" name="quantity[]" class="est_quantity" placeholder="quantity"/>
<input type="text" name="quantity[]" class="est_quantity" placeholder="quantity"/>
<input type="text" name="quantity[]" class="est_quantity" placeholder="quantity"/>

<input type="text" name="cost[]" class="est_cost" placeholder="cost"/>
<input type="text" name="cost[]" class="est_cost" placeholder="cost"/>
<input type="text" name="cost[]" class="est_cost" placeholder="cost"/>

i need to perform some calculations.

//Calculate total Quantity, this is how i do it.
$('.est_quantity').live('keyup', function(){
    var val = 0;
    $('.est_quantity').each(function() {
        if($(this).val().length && $(this).val() != '') {
            val += Number($(this).val());
            $('.est_total_quantity').html(val);
        }
    });
});

the above code works fine, since total quantity is the sum of all quantity[] however calculating the total cost is little different. since the calculation goes like this.

total cost = total_quantity * cost
//for each field or row.

while calculating the cost i want the value to be multiplied by it’s corresponding quantity field.

something like

var cost = $('.est_quantity').val * $('.est_cost').val();

i tried doing it this way

$('.est_cost').live('keyup', function(){
    var val = 0.00;
    $('.est_cost').each(function() {
        if($(this).val().length && $(this).val() != '') {
            var cost = $(this).val() * $('.est_quantity').val();
            val += parseFloat(cost);
            $('.est_total_cost').html(val.toFixed(2));
        }
    });
});

the above code fetch proper calculations for only first row, for rest it fetches some weird value.

how do i go with the code for proper calculations?

P.S: initially there is one row of input fields which includes quantity and cost input fields, the rest input fields are dynamically added upon click event.

thank you

  • 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-06-03T06:42:45+00:00Added an answer on June 3, 2026 at 6:42 am

    in the second code sample.. you should take care that there are more than one element with .est_quantity class you will have to select one when you are iterating over elements with .est_cost class.
    something like this

    $('.est_cost').live('keyup', function(){
        var val = 0.00;
        $('.est_cost').each(function(i) {
            if($(this).val().length && $(this).val() != '') {
                var cost = $(this).val() * $('.est_quantity').eq(i).val();
                val += parseFloat(cost);
                $('.est_total_cost').html(val.toFixed(2));
            }
        });
    });
    

    notice that im using index parameter of each function.
    note:- assuming there are equal number of .est_quantity and .est_cost elements

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

Sidebar

Related Questions

I have a form with some fields of type text and 2 fields (name
I have a form with some generated input fields like theese: <input value=March name=month[March]
I have a drop down box and some text input fields below it. Based
I have some text fields on my project. I want that input types of
I have am attempting to add some input fields to a jquery ui dialog
I am using ASP.NET2.0. I have created a download form with some input fields
I have created some tables with text fields inside, like in the contacts for
I have a form written below: <table> <tr> <td>Worker Type:</td> <td><input type=text id=WorkerTypeTB/></td> </tr>
I recently have come across with a need for some type of translation-type that
I have some input like this: aaaaa bbb \n cccccc\n ddddd \neeee And I

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.