getElementsByTagNameNS method

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

The Element.getElementsByTagNameNS() method returns a live HTMLCollection of elements with the given tag name belonging to the given namespace. It is similar to Document.getElementsByTagNameNS, except that its search is restricted to descendants of the specified element.

Implementation

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