NamedNodeMap
js.html.NamedNodeMap (extern class)
The NamedNodeMap interface represents a collection of Attr objects. Objects inside a NamedNodeMap are not in any particular order, unlike NodeList, although they may be accessed by an index as in an array.
Documentation NamedNodeMap by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See:
Instance Members
Returns the amount of objects in the map.
Returns a Attr, corresponding to the given name.
Replaces, or adds, the Attr identified in the map by the given name.
Removes the Attr identified by the given map.
Returns the Attr at the given index, or null if the index is higher or equal to the number of nodes.
Returns a Attr identified by a namespace and related local name.
Replaces, or adds, the Attr identified in the map by the given namespace and related local name.
Removes the Attr identified by the given namespace and related local name.