Get to know MDN better
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
* Some parts of this feature may have varying levels of support.
The HTMLSelectElement interface represents a <select> HTML Element. These elements also share all of the properties and methods of other HTML elements via the HTMLElement interface.
EventTarget Node Element HTMLElement HTMLSelectElementThis interface inherits the properties of HTMLElement, and of Element and Node.
HTMLSelectElement.autocompleteA string value reflecting the autocomplete, which indicates whether the value of the control can be automatically completed by the browser.
HTMLSelectElement.disabledA boolean value reflecting the disabled HTML attribute, which indicates whether the control is disabled. If it is disabled, it does not accept clicks.
HTMLSelectElement.form Read onlyAn HTMLFormElement referencing the form that this element is associated with. If the element is not associated with of a <form> element, then it returns null.
HTMLSelectElement.labels Read onlyA NodeList of <label> elements associated with the element.
HTMLSelectElement.lengthAn unsigned long The number of <option> elements in this select element.
HTMLSelectElement.multipleA boolean value reflecting the multiple HTML attribute, which indicates whether multiple items can be selected.
HTMLSelectElement.nameA string reflecting the name HTML attribute, containing the name of this control used by servers and DOM search functions.
HTMLSelectElement.options Read onlyAn HTMLOptionsCollection representing the set of <option> (HTMLOptionElement) elements contained by this element.
HTMLSelectElement.requiredA boolean value reflecting the required HTML attribute, which indicates whether the user is required to select a value before submitting the form.
HTMLSelectElement.selectedIndexA long reflecting the index of the first selected <option> element. The value -1 indicates no element is selected.
HTMLSelectElement.selectedOptions Read onlyAn HTMLCollection representing the set of <option> elements that are selected.
HTMLSelectElement.sizeA long reflecting the size HTML attribute, which contains the number of visible items in the control. The default is 1, unless multiple is true, in which case it is 4.
HTMLSelectElement.type Read onlyA string representing the form control's type. When multiple is true, it returns "select-multiple"; otherwise, it returns "select-one".
HTMLSelectElement.validationMessage Read onlyA string representing a localized message that describes the validation constraints that the control does not satisfy (if any). This attribute is the empty string if the control is not a candidate for constraint validation (willValidate is false), or it satisfies its constraints.
HTMLSelectElement.validity Read onlyA ValidityState reflecting the validity state that this control is in.
HTMLSelectElement.valueA string reflecting the value of the form control. Returns the value property of the first selected option element if there is one, otherwise the empty string.
HTMLSelectElement.willValidate Read onlyA boolean value that indicates whether the button is a candidate for constraint validation. It is false if any conditions bar it from constraint validation.
This interface inherits the methods of HTMLElement, and of Element and Node.
HTMLSelectElement.add()Adds an element to the collection of option elements for this select element.
HTMLSelectElement.checkValidity()Checks whether the element has any constraints and whether it satisfies them. If the element fails its constraints, the browser fires a cancelable invalid event at the element (and returns false).
HTMLSelectElement.item()Gets an item from the options collection for this <select> element. You can also access an item by specifying the index in square brackets or parentheses, without calling this method explicitly.
HTMLSelectElement.namedItem()Gets the item in the options collection with the specified name. The name string can match either the id or the name attribute of an option node. You can also access an item by specifying the name in square brackets or parentheses, without calling this method explicitly.
HTMLSelectElement.remove()Removes the element at the specified index from the options collection for this select element.
HTMLSelectElement.reportValidity()This method reports the problems with the constraints on the element, if any, to the user. If there are problems, it fires a cancelable invalid event at the element, and returns false; if there are no problems, it returns true.
HTMLSelectElement.setCustomValidity()Sets the custom validity message for the selection element to the specified message. Use the empty string to indicate that the element does not have a custom validity error.
showPicker()Shows the option picker.
This interface inherits the events of HTMLElement, and of Element and Node.
Listen to these events using addEventListener() or by assigning an event listener to the oneventname property of this interface:
change eventFires when the user selects an option.
input eventFires when the value of an <input>, <select>, or <textarea> element has been changed.
A better way to track changes to the user's selection is to watch for the change event to occur on the <select>. This will tell you when the value changes, and you can then update anything you need to. See the example provided in the documentation for the change event for details.
| HTML # htmlselectelement |
Enable JavaScript to view this browser compatibility table.
This page was last modified on Apr 12, 2025 by MDN contributors.
Your blueprint for a better internet.
Visit Mozilla Corporation’s not-for-profit parent, the Mozilla Foundation.
Portions of this content are ©1998–2026 by individual mozilla.org contributors. Content available under a Creative Commons license.