HTMLSelectElement: item() method
The HTMLSelectElement.item()
method returns the Element
corresponding to the HTMLOptionElement
whose position in the options list corresponds to the index given in the parameter, or null
if there are none.
In JavaScript, using the array bracket syntax with an unsigned long
, like selectElt[index]
is equivalent to selectElt.namedItem(index)
.
Syntax
Parameters
index
is an unsigned long
.
Return value
Examples
HTML
<form>
<select id="myFormControl">
<option id="o1">Opt 1</option>
<option id="o2">Opt 2</option>
</select>
</form>
JavaScript
elem1 = document.forms[0]["myFormControl"][1];
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
item |
1 |
12 |
1 |
5.5 |
≤12.1 |
3 |
4.4 |
18 |
4 |
≤12.1 |
1 |
1.0 |
See also