web api interface
HTMLFormControlsCollection
The HTMLFormControlsCollection interface represents a collection of HTML form control elements, returned by the HTMLFormElement interface’s elements property.
The collection returned by elements includes the form’s associated listed form controls. See elements for the list of listed form controls and an explanation of form association.
This interface replaces one method from HTMLCollection, on which it is based.
Instance properties
This interface inherits the properties of its parent, HTMLCollection.
Instance methods
This interface inherits the methods of its parent, HTMLCollection.
namedItem()- : Returns the
RadioNodeListor theElementin the collection whosenameoridmatches the specified name, ornullif no nodes match. Note that this version ofnamedItem()hides the one inherited fromHTMLCollection. Like that method, using the JavaScript array bracket syntax with aString, as incollection["value"], is equivalent tocollection.namedItem("value").
- : Returns the
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.