class js.html.OptionElement extends Element

Available on js

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.



Documentation for this class was provided by MDN.

Instance Fields

var defaultSelected:Bool

Reflects the value of the

selected HTML attribute. which indicates whether the option is selected by default.

var disabled:Bool

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.

var form:FormElement

If the option is a descendent of a <select> element, then this property has the same value as the form property of the corresponding {{DomXref("HTMLSelectElement") object; otherwise, it is null.

var index:Int

The position of the option within the list of options it belongs to, in tree-order. If the option is not part of a list of options, the value is 0.

var label:String

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.

var selected:Bool

Indicates whether the option is selected.

var text:String

Contains the text content of the element. Setter throws DOMException.

var value:String

Reflects the value of the

value HTML attribute, if it exists; otherwise reflects value of the textContent  IDL attribute.

function new():Void