2.2 Extensions to the NamedNodeMap Interface

The NamedNodeMap (IXMLDOMNamedNodeMap) interface implements the NamedNodeMap interface in [DOMLevel2Core:2000]. The interface adds support for namespaces and iteration through the collection of attribute nodes.

The NamedNodeMap interface is extended by the following methods. For details, see Methods.

IDL Definition

 interface NamedNodeMap {
   // Introduced in DOM Level 2:
   Node               getQualifiedItem (in DOMString namespaceURI);
   Node               nextNode
   Node               removeQualifiedItem (in DOMString namespaceURI);
   Node               reset
 };