NamedNodeMap.getNamedItem

NamedNodeMap.getNamedItem(
   name as String
) as XMLNode

Summary

Return the named node, if it exists in the map.

Parameters
name Name of the node to return.

Usage Notes

Since lookup is by the string value of the name, it is best to avoid using this method for namespaced attributes. Use getNamedItemNS instead.

Example

cts.doc("example.xml").root.attributes.getNamedItem("class");
Powered by MarkLogic Server | Terms of Use | Privacy Policy