
Element.getElementsByTagName( name as String ) as NodeList
Return all the elements that are descendants of the current element that have 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").root.getElementsByTagName("para");
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.