getAllElementsByTagName

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

The getAllElementsByTagName 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 value specified in the tagName parameter.

If you want to match all tags, specify an asterisk character ('*') in the tagName parameter.

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