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

As the question says, how do I set the value of a DropDownList control using jQuery?

share|improve this question

4 Answers

up vote 219 down vote accepted
$("#mydropdownlist").val("thevalue");

just make sure the value in the options tags matches the value in the val method.

share|improve this answer
nice one, thanks! – flesh Nov 15 '08 at 14:41
I have a range validator against a drop down list and I am setting the value of the drop down list as you have described above, yet the range validator keeps failing telling me to select a value (when the value selected is within range). Please see my question stackoverflow.com/questions/3165033/… – James Jul 7 '10 at 13:14

If you working with index you can set the selected index directly with .attr(): $("#mydropdownlist").attr('selectedIndex', 0); This will set it to the first value in the droplist.

Edit: The way I did it above used to work. But it seems like it doesn't any longer.

But as Han so pleasantly points out in the comments, the correct way to do it is:

$("#mydropdownlist").get(0).selectedIndex = index_here;
share|improve this answer
Works like a charm! – Executor Aug 9 '12 at 13:45
2  
Now, this doesn't work at all because select tag doesn't have any attribute named selectedIndex. It's a property of DOM object instead. Hence code should be: $("#mydropdownlist").get(0).selectedIndex = index_here; – Han Dec 13 '12 at 3:24

Try this very simple approach:

/*make sure that value is included in the options value of the dropdownlist 
e.g. 
(<select><option value='CA'>California</option><option value='AK'>Alaska</option>      </select>)
*/

$('#mycontrolId').val(myvalue).attr("selected", "selected");
share|improve this answer

If your dropdown is Asp.Net drop down then below code will work fine,

$("#<%=DropDownName.ClientID%>")[0].selectedIndex=0;

But if your DropDown is HTML drop down then thiw code will work.

$("#DropDownName")[0].selectedIndex=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.