org.w3c.dom.Element.getElementsByTagNameNS
method
public getElementsByTagNameNS(namespaceURI as String, localName as String) as NodeList throws DOMException
Description

Returns descendant elements matching namespace URI and local name.

Parameters
  • namespaceURI Namespace URI, or "*" for every namespace.
  • localName Local name, or "*" for every local name.
Returns

Matching descendant elements.

Throws
  • DOMException if lookup fails.
Example
items = element.getElementsByTagNameNS("*", "item")