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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T00:49:59+00:00 2026-06-08T00:49:59+00:00

I have 2 select boxes in the same fieldset. I am adding an option

  • 0

I have 2 select boxes in the same fieldset. I am adding an option to both using jquery and I want them both to have the same default value.

$(function(){
    var selectbox = $('.selectbox select');
    selectbox.prepend('<option value="Select a question" selected="selected">Select a question</option>');
    selectbox.children('option').each(function() {
        var option = $(this);
        option.removeAttr('disabled');
    });
});

I even try to remove the disabled attribute that it sets and I can’t seem to figure out why its setting the second selectbox as disabled for the option.

  • 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-08T00:50:00+00:00Added an answer on June 8, 2026 at 12:50 am

    You have to prepend the option to each select using .each() loop like below:

    var selectbox = $('.selectbox select');
    selectbox.each(function() {
        $(this).prepend('<option value="Select a question" selected="selected">Select a question</option>');
    });
    

    Your code add option to one select. And you don’t need to disable them for prepend purpose.

    DEMO

    Note

    If your option has disabled attribute, I think this should not make any problem with above code. SEE HERE.

    And to remove disabled attribute from all option you can do:

    var selectbox = $('.selectbox select');
    selectbox.each(function() {
        $(this).find('option').removeAttr('disabled'); // remove disabled attr
        $(this).prepend('<option value="Select a question" selected="selected">Select a question</option>');
    });
    

    DEMO

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

Sidebar

Related Questions

I have 3 select boxes, all populated with the same data. Using jquery I
I have multiple multi-select boxes with the same class and i want to unselect
I have 3 select boxes and all are having same value (clones) & created
So I have two multiple select boxes like this <select id=foo multiple=multiple> <option value=1>Option
I have three select boxes state,city and locality with the id's same as name
I have different select boxes. I want to select second one with related id.
I have several select boxes and textboxes with the same class and I have
I have 4 select boxes, each containing the exact same data: Riding Fishing Smoking
I currently have a HTML select box like below. <select name=item_1> <option value=0>Choose one...</option>
I have 5 HTML select boxes that are all populated with the same data,

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.