findAllElementsByTagName

findAllElementsByTagName(tagName:  String;
                         elements: JadeXMLElementArray input);

The findAllElementsByTagName method of the JadeXMLElement class fills the elements array with all descendant elements that have the value specified in the tagName parameter.

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

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