getElementsByTagNameNS method

HTMLCollection getElementsByTagNameNS(
  1. String? namespace,
  2. String localName
)

Returns a list of elements with the given tag name belonging to the given namespace. The complete document is searched, including the root node.

Implementation

external HTMLCollection getElementsByTagNameNS(
  String? namespace,
  String localName,
);