<select id="target">
<option value="1">...</option>
<option value="2">...</option>
</select>
|
|
|
|||||||||||||||
|
|
|||||||||||||||
|
|
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. |
|||
|
|
|
I know this question has been answered, but here is how I would do it
|
|||
|
|
|
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.
|
|||
|
|
|
If you have disabled option, you may add not([disabled]) to prevent selecting them which result into the following:
|
|||
|
|
|
Another way to reset the values (for multiple selected elements) could be this:
|
|||||
|
|
If you going to use the first option as a default like
Then you can just use.
Nice and simple. |
|||||
|
|
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:
|
|||
|
|