If you know the Index, Value or Text. also if you don't have an ID for a direct reference.
This, this and this are all helpful answers.
Example markup
<div class="selDiv">
<select class="opts">
<option selected value="DEFAULT">Default</option>
<option value="SEL1">Selection 1</option>
<option value="SEL2">Selection 2</option>
</select>
</div>
if you want to not use jQuery, you can use below code:
There are a number of ways to do this, but the cleanest approach has been lost among the top answers and loads of arguments over
val()
. Also some methods changed as of jQuery 1.6, so this needs an update.For the following examples I will assume the variable
$select
is a jQuery object pointing at the desired<select>
tag, e.g. via the following:Note 1 - use val() for value matches:
For value matching, using
val()
is far simpler than using an attribute selector: https://jsfiddle.net/yz7tu49b/6/The setter version of
.val()
is implemented onselect
tags by setting theselected
property of a matchingoption
with the samevalue
, so works just fine on all modern browsers.Note 2 - use prop('selected', true):
If you want to set the selected state of an option directly, you can use
prop
(notattr
) with aboolean
parameter (rather than the text valueselected
):e.g. https://jsfiddle.net/yz7tu49b/
Note 3 - allow for unknown values:
If you use
val()
to select an<option>
, but the val is not matched (might happen depending on the source of the values), then "nothing" is selected and$select.val()
will returnnull
.So, for the example shown, and for the sake of robustness, you could use something like this https://jsfiddle.net/1250Ldqn/:
Note 4 - exact text match:
If you want to match by exact text, you can use a
filter
with function. e.g. https://jsfiddle.net/yz7tu49b/2/:although if you may have extra whitespace you may want to add a trim to the check as in
Note 5 - match by index
If you want to match by index just index the children of the select e.g. https://jsfiddle.net/yz7tu49b/3/
Although I tend to avoid direct DOM properties in favour of jQuery nowadays, to future-proof code, so that could also be done as https://jsfiddle.net/yz7tu49b/5/:
Note 6 - use change() to fire the new selection
In all the above cases, the change event does not fire. This is by design so that you do not wind up with recursive change events.
To generate the change event, if required, just add a call to
.change()
to the jQueryselect
object. e.g. the very first simplest example becomes https://jsfiddle.net/yz7tu49b/7/There are also plenty of other ways to find the elements using attribute selectors, like
[value="SEL2"]
, but you have to remember attribute selectors are relatively slow compared to all these other options.Thanks for the question. Hope this piece of code will work for you.
Try this
you just use select field id instead of #id (ie.#select_name)
instead of option value use your select option value
Answering my own question for documentation. I'm sure there are other ways to accomplish this, but this works and this code is tested.
i'll go with:-