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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:17:29+00:00 2026-05-27T17:17:29+00:00

I have re written my code slightly for a cleaner more efficient code, and

  • 0

I have re written my code slightly for a cleaner more efficient code, and it it not determining the largest variable, it is just setting it to the first variable ran now. It also stopped inserting the variable value into the test spans I have set up.

http://www.sprayfoamsys.com/cmsdev/index.php?page=rig-constructor

<script type="text/javascript">
        var sec1=0;
        var sec2=0;
        var sec3=0;

        function secVar(){
            if(sec1) {
                sec1++;
                document.getElementById('sec1text').innerHTML = sec1;
            }
            if(sec2) {
                sec2++;
                document.getElementById('sec2text').innerHTML = sec2;
            }
            if(sec3) {
                sec3++;
                document.getElementById('sec3text').innerHTML = sec3;
            }

            largest = Math.max(sec1, sec2, sec3);
            if (largest === sec1) {
              //a
            } else if (largest === sec2) {
              //b
            } else if (largest === sec3) {
              //c
            }
            switch (largest) {
              case sec1:
                document.getElementById('rig').innerHTML = 'Test1';
                break;
              case sec2:
                document.getElementById('rig').innerHTML = 'Test2';
                break;
              case sec3:
                document.getElementById('rig').innerHTML = 'Test3';
                break;
            }
        }
    </script>

The questions have the secVar(sec1);, secVar(sec2);, secVar(sec3); depending on the question that they answer onclick.

The previous code I had looked like this below. But was still not determining the largest variable correctly.

<script type="text/javascript">
        var sec1=0;
        var sec2=0;
        var sec3=0;

        function sec1Var(){
        sec1++;
        document.getElementById('sec1text').innerHTML = sec1;
        }

        function sec2Var(){
        sec2++;
        document.getElementById('sec2text').innerHTML = sec2;
        }

        function sec3Var(){
        sec3++;
        document.getElementById('sec3text').innerHTML = sec3;
        }

        largest = Math.max(sec1, sec2, sec3);

        function largestVar(){
            if (largest === sec1) {
              //a
            } else if (largest === sec2) {
              //b
            } else if (largest === sec3) {
              //c
            }

            switch (largest) {
              case sec1:
                document.getElementById('rig').innerHTML = 'Test1';
                break;
              case sec2:
                document.getElementById('rig').innerHTML = 'Test2';
                break;
              case sec3:
                document.getElementById('rig').innerHTML = 'Test3';
                break;
            }
        }
    </script>

What is causing it not to work?

  • 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-27T17:17:30+00:00Added an answer on May 27, 2026 at 5:17 pm

    (I happen to have seen your previous question about the same topic)

    I think you’ve combined two different ideas: determining the largest value and determining the variable whose value is the largest. You’re looking for something like the following:

    function largestVar(){
        if (sec1 >= sec2 && sec1 >= sec3) {
            //a
            document.getElementById('rig').innerHTML = 'Test1';
        } else if (sec2 >= sec1 && sec2 >= sec3) {
            //b
            document.getElementById('rig').innerHTML = 'Test2';
        } else {
            //c
            document.getElementById('rig').innerHTML = 'Test3';
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written this code to join ArrayList elements: Can it be optimized more?
I have written code for many patterns but unable to write for this..... not
I have written code that automatically creates CSS sprites based on the IMG tags
I have written code that opens 16 figures at once. Currently, they all open
I have written code in Java to access web cam,and to save image... I
I have written some code in my VB.NET application to send an HTML e-mail
I have written jQuery code, in files Main.html and ajax.php . The ajax.php file
I have written some code for playing a .wav through my application. Now I
I have written some code to ensure that items on an order are all
I have written some code to look at properties using reflection. I have retrieved

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.