getElementsByTagNameNS

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

The getElementsByTagNameNS method of the JadeXMLElement class fills the elements array with the immediate child 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.