Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HTMLFormControlsCollection

A collection of HTML form control elements.

interface HTMLFormControlsCollection extends HTMLCollectionBase {
namedItem(name: string): RadioNodeList | Element | null;
}
var HTMLFormControlsCollection: {};

§Extends

§Methods

§
namedItem(name: string): RadioNodeList | Element | null
[src]

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

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