HTMLFormControlsCollection: namedItem() method
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
The HTMLFormControlsCollection.namedItem()
method returns
the RadioNodeList
or the Element
in the collection whose
name
or id
match the specified name, or null
if
no node matches.
Note that this version of namedItem()
hides the one inherited from
HTMLCollection
. Like that one, in JavaScript, using the array bracket
syntax with a String
, like collection["value"]
is
equivalent to collection.namedItem("value")
.
Syntax
namedItem(name)
[name]
Parameters
name
-
A string which will be used to match against the
name
orid
attributes of the controls in thisHTMLFormControlsCollection
object.
Return value
- A
RadioNodeList
,Element
, ornull
.
Examples
Using namedItem()
HTML
<form>
<label for="notes">Notes:</label>
<input id="notes" name="my-form-control" type="text" />
<label for="start">Start date:</label>
<input id="start" name="my-form-control" type="date" />
</form>
<div id="output"></div>
JavaScript
const form = document.querySelector("form");
const items = form.elements.namedItem("my-form-control");
const output = document.querySelector("#output");
const itemIDs = Array.from(items)
.map((item) => `"${item.id}"`)
.join(", ");
output.textContent = `My items: ${itemIDs}`;
Result
Specifications
Specification |
---|
HTML Standard # dom-htmlformcontrolscollection-nameditem-dev |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
namedItem |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- Partial support
- Partial support
- Has more compatibility info.
See also
HTMLCollection.namedItem
that it replaces