W3cubDocs

/Web APIs

HTMLFormControlsCollection

The HTMLFormControlsCollection interface represents a collection of HTML form control elements, returned by the HTMLFormElement interface's elements property.

This interface replaces one method from HTMLCollection, on which it is based.

HTMLCollection HTMLFormControlsCollection

Instance properties

This interface inherits the properties of its parent, HTMLCollection.

Instance methods

This interface inherits the methods of its parent, HTMLCollection.

HTMLFormControlsCollection.namedItem()

Returns the RadioNodeList or the Element in the collection whose name or id matches the specified name, or null if no nodes match. Note that this version of namedItem() hides the one inherited from HTMLCollection. Like that method, using the JavaScript array bracket syntax with a String, as in collection["value"], is equivalent to collection.namedItem("value").

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
HTMLFormControlsCollection 1 12 1 No ≤12.1 ≤4 4.4 18 4 ≤12.1 1 1.0
namedItem 1 12 33
27–33Returned a NodeList instead of a RadioNodeList.
No ≤12.1 ≤4 4.4 18 33
27–33Returned a NodeList instead of a RadioNodeList.
≤12.1 1 1.0

See also

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormControlsCollection