Back to Content

HTMLAllCollection: namedItem() method

files/en-us/web/api/htmlallcollection/nameditem/index.md

latest699 B
Original Source

{{APIRef("DOM")}}

The namedItem() method of the {{domxref("HTMLAllCollection")}} interface returns the first {{domxref("Element")}} in the collection whose id or name attribute matches the specified name, or null if no element matches.

Syntax

js-nolint
namedItem(name)

Parameters

  • name
    • : A string representing the value of the id or name attribute of the element we are looking for.

Return value

The first {{domxref("Element")}} in the {{domxref("HTMLAllCollection")}} matching the name, or null, if there are none.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}