getElementsByTagName

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

The getElementsByTagName method of the JadeXMLDocument class fills the elements array with all 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 findElementsByTagName method to retrieve elements more directly through a collection, by using the collection sequence.