<select id="target">
<option value="1">...</option>
<option value="2">...</option>
</select>
|
feedback
|
| |||||||||||||
feedback
|
| |||||||||||||
feedback
|
|
when you use
This will not work in Chrome and Safari if the first option value is null. I prefer
because it can work in all browsers. | |||
|
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.
| |||
|
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; }); | |||
feedback
|
|
If you have disabled option, you may add not([disabled]) to prevent selecting them which result into the following:
| |||
|
feedback
|
|
I know this question has been answered, but here is how I would do it
| |||
|
feedback
|