<select id="target">
  <option value="1">...</option>
  <option value="2">...</option>
</select>
link|improve this question

42% accept rate
feedback

8 Answers

up vote 51 down vote accepted
$("#target").val($("#target option:first").val());
link|improve this answer
21  
Should be noted that this more easily done with $("#target")[0].selectedIndex = 0; – David Andres Sep 12 '09 at 4:34
It works, but it's based on 1st element value, if 1st element contains empty value, it will select nearest element WITH value – evilReiko Mar 1 '11 at 12:37
Seems to work great, except for IE6. Unsure of 7-8, works on 9. – Nicholi Feb 3 at 21:53
I recant my previous statement, was getting ahead of myself. $("#target").val("option:first"); works most everywhere but IE6 $("target").val($("#target option:first").val()); will work in IE6, because you are literally looking up the first value, and entering it as target's value. Two id lookups instead of one. – Nicholi Feb 4 at 1:56
And it's actually necessary for IE6, 7, and 8. Whereas .val('option:first') works in IE9 (and Safari and Firefox and Chrome and Opera). – Nicholi Feb 4 at 2:20
feedback
// remove "selected" from any options that might already be selected
$('#target option[selected="selected"]').each(
    function() {
        $(this).removeAttr('selected');
    }
);


// mark the first option as selected
$("#target option:first").attr('selected','selected');
link|improve this answer
Good second approach. Please add the value of the selected attribute. For example, attr("selected", "selected"). Without this extra parameter, the selection isn't made. – David Andres Sep 12 '09 at 4:36
yes you are correct..i forgot to add that value.. – user149513 Sep 12 '09 at 5:05
What if some option is already selected? – Egor Pavlikhin Sep 29 '10 at 6:20
@EgorPavlikhin - I just edited the answer to include JQuery code to remove the "selected" flag from any options that might have already been selected. Now the answer is correct :) – jmort253 Dec 8 '11 at 21:29
1  
There is no need for the each function, should be: $('#target option[selected="selected"]').removeAttr('selected') also now should be used with removeProp and prop instead. – vsync Dec 22 '11 at 9:59
feedback

when you use

$("#target").val($("#target option:first").val());

This will not work in Chrome and Safari if the first option value is null.

I prefer

$("#target option:first").attr('selected','selected');

because it can work in all browsers.

link|improve this answer
feedback

I've found that just setting attr selected doesn't work if there's already a selected attribute. The code I use now will first unset the selected attribute, then select the first option.

$('#target').removeAttr('selected').find('option:first').attr('selected', 'selected');
link|improve this answer
feedback
$("#target")[0].selectedIndex = 0;
link|improve this answer
feedback

Another way to reset the values (for multiple selected elements) could be this:

$("selector").each(function(){

/*Perform any check and validation if needed for each item */

/*Use "this" to handle the element in javascript or "$(this)" to handle the element with jquery */

this.selectedIndex=0;

});

link|improve this answer
+1 it's actually a good answer, but you could have made it more specific to the question domain; instead of $("selector") you could have just written $('#target') – Jack May 17 at 4:12
feedback

If you have disabled option, you may add not([disabled]) to prevent selecting them which result into the following:

$("#target option:not([disabled]):first").attr('selected','selected')
link|improve this answer
feedback

I know this question has been answered, but here is how I would do it

$("#target option")
    .removeAttr('selected')
    .find(':first')     //you can also use .find('[value=MyVal]')
        .attr('selected','selected');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.