getElementByTagNameNS

getElementByTagNameNS(namespaceURI:  String;
                      localName:     String): JadeXMLElement;

The getElementByTagNameNS method of the JadeXMLDocument class returns a reference to the first JadeXMLElement instance that has the namespace URI and local name specified in the namespaceURI and localName parameters, respectively.

If you want to match all namespace URIs or local names, specify an asterisk character ('*') in the namespaceURI or localName parameter.

To improve performance when the sequence is not important, use the findElementByNameNS method to retrieve the element more directly through a collection, by using the collection sequence.