J
Jorge
What is the difference between static NodeList and live NodeList?
That having a live nodeList is like having a multithreaded JS engine
and that's error prone and can easily break even the most innocent-
looking code such as e.g. this one, because it might happen than
suddenly item[n] becomes !== item[n] due to side-effects :
n= liveNodeList.length;
while (n--) {
function1.call(liveNodeList[n]);
function1.call(liveNodeList[n]); //->liveNodeList[n] == null
}