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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T22:05:50+00:00 2026-06-05T22:05:50+00:00

I am having some problems with finding out if the value is missing or

  • 0

I am having some problems with finding out if the value is missing or not.

I have the following select box on my screen:

<select id="user_list" onclick="load_user(this)" name="user_list" size="21" style="width:200px;">   
<option value="1">Item1</option>
<option value="2">Item2</option>
<option value="4">Item4</option>
</select>

I am using the following JavaScript:

var userList = document.getElementById("user_list"); 
    for (var i=0;i<userList.options.length; i++) { 
        if (userList.options[i].value != (i+1)) { 
            alert((i+1)+" is missing"); 
            break; 
        } 
        else
        {
        alert((userList.options.length+1)+" is missing"); 
        break;
        }

} 

The problem I am facing is that if option values 1,2,3,4 are there is replys back with 5 (as that is the next number) which is fine as that is what I want.

If I remove option 3 (like in my select box above) it keeps replying with 4 is missing when it should say 3 is missing.

If i remove the following code:

else
{
alert((userList.options.length+1)+" is missing"); 
break;
}

it does what I want it to do, but it doesn’t get the next value number after checking all values (so it stops after reading the last option in the list).

What it should do is go though all the options in the select box and if one of the values is missing it should alart the one that is missing. If all value numbers are there then it should alart the next available option that is missing.

Can anyone see what I am doing wrong?

  • 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-05T22:05:51+00:00Added an answer on June 5, 2026 at 10:05 pm

    It keeps telling you that 4 is missing because you are running the else code in every iteration of the loop (until it finds one that is missing). The code in your else should only be ran once. You can use a flag variable to set if one is missing and check after the loop. Try changing the js code to

    var allFound = true;
    var userList = document.getElementById("user_list");
        for (var i=0;i<userList.options.length; i++) {
            if (userList.options[i].value != (i+1)) {
                alert((i+1)+" is missing");
                allFound = false;
                break;
            }
        }
    if(allFound)
        alert((userList.options.length+1)+" is missing");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently having some problems- now = datetime.datetime.now() month = now.strftime(%B) site = wikipedia.getSite('en', 'wikiquote')
Im having some problems getting the Sticky Footer to work on my site. If
Im having some problems with a simple toggle in Safari. A really annoying flickering
I'm having some problems getting ncurses' getch() to block. Default operation seems to be
The background: I'm having some problems with Thoughtbot's Factory Girl gem, with is used
I'm having some problems with eVB. How can I put a menu bar in
I'm having some problems with getting the .getruntime.exec() to work properly. Here is the
I'm having some problems implementing an algorithm to read a foreign process' memory. Here
I am having some problems turning the SQL below into a Zend Db query.
I'm having some problems with Jquery UI Dialog and TinyMCE. Passing data to a

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.