XMLDocument.getElementsByTagNameNS( uri as String?, localname as String ) as NodeList
Return all the elements in the document with the given localname and namespace URI.
Parameters | |
---|---|
uri | Namespace URI of the elements to return. |
localname | Local name of the elements to return. |
If the first argument is null, it will match elements with no namespace.
See also the Node.xpath method.
cts.doc("example.xml"). getElementsByTagNameNS("http://example.com/ns1","item");
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.