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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T01:31:00+00:00 2026-06-03T01:31:00+00:00

I want to implement the following system of drop down lists: I’m aware that

  • 0

I want to implement the following system of drop down lists:
enter image description here

I’m aware that drop down lists are implemented using <select> statements. However, I’m not sure if I need to use Javascript commands to handle my requirements listed in the picture. How would you suggest to handle this?

Thanks in advance!

  • 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-03T01:31:01+00:00Added an answer on June 3, 2026 at 1:31 am

    You will have all three drop down on the page but dropdown 2 and 3 will be hidden. On change of first drop down you will have to check the value of first drop down and show second and third dropdown. Demo is available here

    In html we define three dropdowns first is visible and second and third are hidden. We will show the hidden dropdown when 3 is selected from first dropdown

    <select id="sel1" >    
        <option > 1 </option>
        <option > 2 </option>
        <option > 3 </option>
    </select>
    
    <select id="sel2" style="display:none" >
        <option > 1 </option>
        <option > 2 </option>
        <option > 3 </option>
    </select>
    
    <select id="sel3" style="display:none" >
        <option > 1 </option>
        <option > 2 </option>
        <option > 3 </option>
    </select>
    
    ​In javascript we have show the hidden dropdowns when 3 is selected from first drop down
    
    $('#sel1').change(function ()
    {   
        if($(this).val() == "3")
        {
    
            $('#sel2').show();
            $('#sel3').show();
        }
    }
    );
    ​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to know if it's possible to implement following behaviors: take system app
In an application having UITabBarController , I want to implement following scenario: When user
I want to implement the following constraints in mysql: create table TypeMapping( ... constraint
I want to log my log strings to a file. I implemented the following
Microsoft has announce that WindowsLiveID become a OpenID provider . I want implement it
I want to implement the following scenario: When a user presses the Home key
I want to implement a facebook like notification system in ASP.NET MVC 3 :
I want to implement the following: I define a function. And when I write
I am using a command in the proc file system which is the following
I am trying to implement a generic Wrapper-Class for Qt's class system using C#'s

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.