Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I set the index of a dropdown in jQuery if the way I'm finding the control is as follows:

$("*[id$='" + originalId + "']")

I do it this way because I'm creating controls dynamically and since the ids are changed when using Web Forms, I found this as a work around to find me some controls. But once I have the jQuery object, I do not know how to set the selected index to 0 (zero).

Thanks in advance for the help!

share|improve this question

5 Answers

up vote 107 down vote accepted

First of all - that selector is pretty slow. It will scan every DOM element looking for the ids. It will be less of a performance hit if you can assign a class to the element.

$(".myselect")

To answer your question though, there are a few ways to change the select elements value in jQuery

// sets selected index of a select box to the option with the value "0"
$("select#elem").val('0'); 

// sets selected index of a select box to the option with the value ""
$("select#elem").val(''); 

// sets selected index to first item using the DOM
$("select#elem")[0].selectedIndex = 0;
share|improve this answer
is there a better way to do it? I figured it'd scan the whole DOM looking to match the ID, but since I'm new to jQuery I figured, let's make it work and then see if there's a better way to do it. Any advise will be appreciated. – oz. Aug 21 '09 at 22:57
Yes - if you can assign a class to the element(s) you need to find, it would be a much faster selector. – gnarf Aug 21 '09 at 23:07

Just found this, it works for me and I personally find it easier to read.

This will set the actual index just like gnarf's answer number 3 option.

// sets selected index of a select box the actual index of 0 
$("select#elem").attr('selectedIndex', 0);

This didn't used to work but does now... see bug: http://dev.jquery.com/ticket/1474

Addendum

As recommended in the comments use :

$("select#elem").prop('selectedIndex', 0);

share|improve this answer
14  
And as of jQuery 1.6 you should be using .prop('selectedIndex', 0); regardless of if .attr() works or not :) – gnarf Aug 11 '11 at 13:59
1  
Correct, it in fact might not work in 1.7. see accepted answer : stackoverflow.com/questions/8010664/… – 4imble Nov 21 '11 at 17:05

I'm using $('#elem').val('xyz'); to select the option element that has value='xyz'

share|improve this answer

You want to grab the value of the first option in the select element.

$("*[id$='" + originalId + "']").val($("*[id$='" + originalId + "'] option:first").attr('value'));
share|improve this answer
$("[id$='" + originalId + "']").val("0 index value");

will set it to 0

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.