getAllElementsByTagNameNS

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

The getAllElementsByTagNameNS method of the JadeXMLElement class fills the elements array with all descendant 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 namespaces or local names, specify an asterisk character ('*') in the namespaceURI or localName parameter.

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