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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T10:05:27+00:00 2026-05-18T10:05:27+00:00

I have a form that has two select lists: <select name=rating1 id=rating1> <option>1</option> <option>2</option>

  • 0

I have a form that has two select lists:

<select name="rating1" id="rating1">
  <option>1</option>
  <option>2</option>
</select>

<select name="rating2" id="rating2">
  <option>1</option>
  <option>2</option>
</select>

I tried to create a script that would add the two selected values, so for example if a user selected 1 for rating 1, and 2 for rating 2, “Category total: 3” would be displayed at the table head. This script is as follows:

<p><script>

    $("select").keyup(function () {
        var add = parseInt($("#rating1").val())+ parseInt($("#rating2").val());
                   $("p").html("Category Total: "+add+" ");
    }).keyup();
</script></p>

It seems like it should work, but what am I doing wrong?
Thanks!

  • 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-18T10:05:28+00:00Added an answer on May 18, 2026 at 10:05 am

    You script tag is strangely nested inside the p tag. Also make sure that the DOM is loaded before trying to attach handlers to elements.

    <script type="text/javascript">
        $(function() {
            $("select").keyup(function () {
                var add = parseInt($("#rating1").val()) + parseInt($("#rating2").val());
                $("p").html("Category Total: " + add + " ");
            }).keyup();
        });
    </script>
    <p></p>
    

    Here’s a demo.

    Remark: The $(document).ready is not necessary if this script is located after the select declaration.

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

Sidebar

Related Questions

I have a form that has two buttons on it, one yes, one no,
I have a windows form that has two DataGridViews (DGVs) that will hold 25,000+
I have a form that has a group of 3 text_fields. I need two
I have a form that has label values that I would like to pass
i have a form that has a multiple select drop down. a user can
I have a form that has two field (time_selects), the idea is that the
I have a mini form that consists of all select boxes and checkbox lists.
I have a form in CakePHP that has two live-search text input. Each one
I have a form that has many long-methods. My quest is: What is the
I have a form that has 8 columns and a variable number of rows

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.