NodeList in DOM Level 2 Core
The NodeList interface represents an ordered collecition of nodes.
For official information please see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-536297177.
Description
The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented. NodeList objects in the DOM are live.
The items in the NodeList are accessible via an integral index, starting from 0.
Properties that are a NodeList
| name | object | description |
|---|---|---|
| childNodes | Node | (read only) |
Methods that return a NodeList
| name | of object | description |
|---|---|---|
| getElementsByTagName() | Document | |
| getElementsByTagNameNS() | Document | |
| getElementsByTagName() | Element | |
| getElementsByTagNameNS() | Element | |
| getElementsByName() | HTMLDocument | |
| getIntersectionList() | SVGSVGElement | Returns the list of graphics elements whose rendered content intersects the supplied rectangle, honoring the 'pointer-events' property value on each candidate graphics element. |
| getEnclosureList() | SVGSVGElement | Which elements are within the rect? |