namedItem method

JSObject? namedItem(
  1. String name
)

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

Implementation

external JSObject? namedItem(String name);