Skip to content

HTMLFormControlsCollection

Values

asHTMLCollection

let asHTMLCollection: DomTypes.htmlFormControlsCollection => DomTypes.htmlCollection<
DomTypes.element,
>

Parameters

DomTypes.htmlFormControlsCollection

Return type

DomTypes.htmlCollection< DomTypes.element >

item

Retrieves an object from various collections. Read more on MDN

let item: (
DomTypes.htmlFormControlsCollection,
int,
) => DomTypes.element

Parameters

DomTypes.htmlFormControlsCollection int

Return type

DomTypes.element

namedItem

Retrieves a select object or an object from an options collection. Read more on MDN

let namedItem: (
DomTypes.htmlFormControlsCollection,
string,
) => DomTypes.element

Parameters

DomTypes.htmlFormControlsCollection string

Return type

DomTypes.element