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

  • Home
  • SEARCH
  • 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 6918233
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T09:49:56+00:00 2026-05-27T09:49:56+00:00

Why doesn’t this work when a select has optgroups in it? doesn’t work $(option:first-child).attr(selected,

  • 0

Why doesn’t this work when a select has optgroups in it?

doesn’t work

$("option:first-child").attr("selected", "selected");

works

$("select>option:first-child").attr("selected", "selected");

When I do $("select:eq(1) option:first-child").val() it appears to be getting the right option, but when I call attr() it isn’t picking the right one.

Example: http://jsfiddle.net/7J2Yb/

  • 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-27T09:49:57+00:00Added an answer on May 27, 2026 at 9:49 am

    If you check the value of $("option:first-child").length you will notice that it is 5. :first-child is selecting options that are the first child of their parent, which are:

    <SELECT id='a'>
        <OPTION selected value=0>(all)</OPTION><!-- THIS ONE -->
        <OPTION value=1>A</OPTION>
        <OPTION value=2>B</OPTION>
        <OPTION value=3>C</OPTION>
    </SELECT>
    
    <SELECT id='b'>    
        <OPTION selected value=0>(all)</OPTION><!-- THIS ONE -->
        <optgroup label="A">
            <OPTION value=1>A</OPTION><!-- THIS ONE -->
        </optgroup>
        <optgroup label="B">
            <OPTION value=2>B</OPTION><!-- THIS ONE -->
        </optgroup>
        <optgroup label="C">
            <OPTION value=3>C</OPTION><!-- THIS ONE -->
        </optgroup>
    </SELECT>
    

    Furthermore $("select:eq(1) option:first-child").length is equal to 4 for the same reason above. Calling .val() on the array outputs the first elements value, but the selector is selecting all 4 of them.


    If you want to select the first element in each select write:

    $("select").find("option:first").attr("selected", true);
    

    working example: http://jsfiddle.net/hunter/7J2Yb/2/

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

Sidebar

Related Questions

Why doesn't this work (when parameter is set to 1) : SELECT * FROM
Why doesn't the CAST work in this MySQL query? SELECT MAX(Signups) AS Max, MIN(Signups)
Why doesn't the following code work? $('select option').live('click', function(){ alert('hello') }) html: <select class=ok>
Why doesn't this work: <Style TargetType=s:Substance> <Setter Property=Template> <Setter.Value> <DataTemplate> <StackPanel> <TextBlock Text={TemplateBinding Name}/>
This doesn't work: $to = 'myemail@gmail.com'; $from = 'test@test.com'; $subj = 'test'; $message =
Why doesn't this code work? I'am using FF. <head> <script type=text/javascript> document.getElementById(someID).onclick = function(){
This doesn't work. I've got an exception from SQL databse that column does not
Why doesn't this work? I have bypassed this before but i can't remember how
Why doesn't Html.ActionLink work in the below code? This is a page in the
Why doesn't this work? var newbody = <body><div>hello</div></body>; $(body).remove(); $(head).after(newbody); All i get after

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.