getElementsByTagNameNS

getElementsByTagNameNS(namespaceURI:  String;
                       localName:     String;
                       elements:      JadeXMLElementArray input);

The getElementsByTagNameNS method of the JadeXMLDocument class fills the elements array with all elements in document order (that is, using a preorder traversal) that have the values 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 findElementsByNameNS method to retrieve elements more directly through a collection, by using the collection sequence.