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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T06:55:48+00:00 2026-06-15T06:55:48+00:00

I need to write a script to calculate working hours. I have a table

  • 0

I need to write a script to calculate working hours. I have a table with 6 possible amounts of hours which need to be added together in a field at the bottom.

The HTML looks like this:

<table>
 <tr>
  <td><input type="text" name="amount[]" class="countAmount"></td>
  <td>(...)</td>
 </tr>
 <tr>
  <td><input type="text" name="amount[]" class="countAmount"></td>
  <td>(...)</td>
 </tr>
 <tr>
  <td><input type="text" name="amount[]" class="countAmount"></td>
  <td>(...)</td>
 </tr>
 <tr>
  <td>Total: <span id="total"></span></td>
 </tr>
</table>

I am trying to get the values of the class countAmount counted together.

I have no idea where to start with the jQuery code. Everything I tried was useless, but the main problems are how to handle the empty values and how to handle the values as an INT.

  • 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-15T06:55:50+00:00Added an answer on June 15, 2026 at 6:55 am

    To find the inputs:

    var inputs = $('input.countAmount');
    

    To convert to numbers and handle blanks:

    var num = parseInt($(input).val(), 10);
    if (!isNaN(num)) {
        // It's a valid number, not blank, not "a" or "q", etc.
    }
    

    To loop through them, use each.

    So:

    var total = 0;
    $('input.classAmount').each(function() {
        var num = parseInt(this.value, 10);
        if (!isNaN(num)) {
            total += num;
        }
    });
    

    …since within the loop, this will be the input, and to get the input’s value, you don’t need jQuery, the value property is fine.

    Then to put it in your total span:

    $("#total").text(String(total));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to write a script in Matlab, which will read some data from
I need to write a script which will post username and password onto a
I have a noobie question: I need to write SQL script that returns 3
I have a simple jQuery script which pushes the footer to the bottom of
I need help to write a shell script to calculate the directory space in
I need to write a script which looks at a file and replaces any
I have a python modules question: I need to write a script that will
Need to write batch script which copies file from FTP to local drive I'm
I have a ftp location and I need to write shell script to mirror
I need to write a script that does the following (doesn't matter to which

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.