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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:25:18+00:00 2026-06-13T13:25:18+00:00

I have 1 select, 2 text inputs & some JSON data in a form:

  • 0

I have 1 select, 2 text inputs & some JSON data in a form:

  • select input: List of Suppliers
  • text input 1: Net Amount
  • text input 2: Gross Amount
  • JSON Data:contains the rates of various suppliers as JSON in supplier_tax_rates

I am calculating Gross Amount something like this(pseudo code):

grossAmount = NetAmount + ((currently_selected_supplier.tax_percentage_charged / 100) * netAmount)

Here is the complete code:
Calculate total after retriveing tax rate from JSON

Now, this should work but it doesn’t. I get NaN(not a number), means something is wrong. But I have trouble find where.

  • JSfiddle
  • 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-13T13:25:19+00:00Added an answer on June 13, 2026 at 1:25 pm

    You have multiple problems in your code. Here is the correct version:

    var taxRates = $.parseJSON(supplier_tax_rates);
    
    var getTaxRate = function(id) {
        for (var i in taxRates) {            // correct loop definition
            if (taxRates[i].id == id) {      // check you get id correctly
                return taxRates[i].tax_percentage_charged;   // instead of 'rate'
            }
        }
    };
    
    $('#PurchaseNetAmount').on('change', function(event) {
        var taxRatesId = $('#PurchaseSupplierId').val();
        var netAmount = parseFloat(this.value);
        var grossAmount = netAmount + ((getTaxRate(taxRatesId) / 100) * netAmount);
        $('#PurchaseGrossAmount').val(grossAmount);
    });
    

    DEMO: http://jsfiddle.net/A9vmg/18/

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

Sidebar

Related Questions

I have a form in my asp.net mvc(C#) application which handles some dynamic controls.
I have a textarea and among free text input I insert some tags that
I have 2 drop-down menus (select1 and select2) and 1 input text (rate). When
So I have a web page where you can select text boxes and close
Assume I do not have text indexing on. Let say I have: SELECT *
I have a select ond it's options contains text in hebrew and english. For
I have a text view. What I want is when I select the text
I have this string: Test: String And I want to select the text before
I have a UITableView with 3 empty rows. The user can select which text
I have a devexpress xtraGrid. One column is editable. When I select the text

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.