Loading TOC...

Element.getElementsByTagNameNS

Element.getElementsByTagNameNS(
   uri as String?,
   localname as String
) as NodeList

Summary

Return all the elements that are descendants of the current element that have the given localname and namespace URI.

Parameters
uri Namespace URI of the elements to return.
localname Local name of the elements to return.

Usage Notes

If the first argument is null, it will match elements with no namespace.

See also the Node.xpath method.

Example

cts.doc("example.xml").root.
   getElementsByTagNameNS("http://example.com/ns1","item");

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.