DOM option elements elements share all of the properties and methods of other HTML elements described in the element section. They also have the specialized interface HTMLOptionElement (or HTML 4 HTMLOptionElement).
No methods are defined on this interface.
Reflects the value of the
selected
HTML attribute. which indicates whether the option is selected by default.
Reflects the value of the
disabled
HTML attribute, which indicates that the option is unavailable to be selected. An option can also be disabled if it is a child of an <optgroup>
element that is disabled.
<select>
element, then this property has the same value as the form
property of the corresponding {{DomXref("HTMLSelectElement") object; otherwise, it is null.Reflects the value of the
label
HTML attribute, which provides a label for the option. If this attribute isn't specifically set, reading it returns the element's text content.
Reflects the value of the
value
HTML attribute, if it exists; otherwise reflects value of the textContent
IDL attribute.