findElementsByNameNS

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

The findElementsByNameNS method of the JadeXMLDocument class fills the elements array with all elements that have the values specified in the namespaceURI and localName parameters, respectively.

As the search uses the collection sequence, the elements may not be in the document sequence.

If you want to match all namespace URIs or all local names, specify an asterisk character ('*') in the namespaceURI or localName parameter. Note, however, that if you specify "*" in the localName parameter, the access method uses the document sequence to locate the requested elements rather than the collection sequence that optimizes performance.