Interface HTMLAllCollection

interface HTMLAllCollection {
    length: number;
    item(nameOrIndex?): Element | HTMLCollection;
    namedItem(name): Element | HTMLCollection;
    [index: number]: Element;
}

Indexable

[index: number]: Element

Properties

Methods

Properties

length: number

Returns the number of elements in the collection.

MDN Reference

Methods

  • Returns the item with ID or name name from the collection.

    If there are multiple matching items, then an HTMLCollection object containing all those elements is returned.

    Only button, form, iframe, input, map, meta, object, select, and textarea elements can have a name for the purpose of this method; their name is given by the value of their name attribute.

    MDN Reference

    Parameters

    • name: string

    Returns Element | HTMLCollection