NodeList Class Reference
Inherits from | JavaScript Object |
Overview
An immutable collection of nodes.
Elements can be accessed using the item()
function or via the array style operator:
var node = nodeList.item(0);
//or
var node = nodeList[0];
Overview of Tasks
Attributes
- Name
-
length
- Type
-
int
- Writability
-
readonly
Functions
- Signature
-
item(index)
- Return Type
-
Node