As the question says, how do I set the value of a DropDownList control using jQuery?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
just make sure the value in the options tags matches the value in the val method. |
|||||
|
|
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:
|
||||
|
Try this very simple approach:
|
|||
|
|
|
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; |
|||
|
|
