XMLDocument.getElementsByTagName( name as String ) as NodeList
Return all the elements in the document with the given name.
Parameters | |
---|---|
name | Name of the elements to return. |
Since lookup is by the string value of the name, it is best to avoid using this method for namespaced elements. Use getElementsByTagNameNS instead.
See also the Node.xpath method.
cts.doc("example.xml").getElementsByTagName("para");