Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<select id="target">
  <option value="1">...</option>
  <option value="2">...</option>
</select>
share|improve this question

10 Answers

up vote 136 down vote accepted
$("#target").val($("#target option:first").val());
share|improve this answer
58  
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 '12 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 '12 at 1:56
1  
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 '12 at 2:20
show 2 more comments
// 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');
share|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
1  
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
4  
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

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.

share|improve this answer
$("#target")[0].selectedIndex = 0;
share|improve this answer

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');
share|improve this answer
Works perfectly in a $.each loop, thanks! – Martin Gemme Apr 11 at 1:54

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');
share|improve this answer

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')
share|improve this answer

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;

});
share|improve this answer
1  
+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 '12 at 4:12

If you going to use the first option as a default like

<select>
    <option value="">Please select an option below</option>
    ...

Then you can just use.

$('select').val('');

Nice and simple.

share|improve this answer
1  
This will not work in IE. – Vinothkumar Arputharaj Mar 25 at 14:46

Changing the value of the select input or adjusting the selected attribute can overwrite the default selectedOptions property of the DOM element, resulting in an element that may not reset properly in a form that has had the reset event called.

Use jQuery's prop method to clear and set the option needed:

$("#target option:selected").prop("selected", false);
$("#target option:first").prop("selected", "selected");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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