NodeList : Object
A list of Nodes similar to an Array. NodeLists are returned from various methods such as
document.getElementsByClassName()
, document.getElementsByTagName()
, and document.querySelectorAll()
. Note, the items in a NodeList may update as the underlying document updates, see the documentation for the API that created the NodeList for more details.Copyright © JavaScripture Contributors