I am trying to do a simple thing such as:

var elements = document.getElementsByTagName("input");
console.log(elements);
console.log(elements.length);

The console.log(elements) shows the NodeList containing 28 input elements, but the elements.length is always 0.

I've also seen this getElementsByTagName("div").length returns zero for any webpage however I didn't understand what exactly is the reason for it happening and how to fix it. I've also noticed that this happens on both Firefox, IE, Chrome.

Anyone could help me out?

link|improve this question

68% accept rate
Can't quite remember for sure, but try doing elements.length() - length may be a function, can't remembe.r – Thomas Shields Apr 30 '11 at 21:41
Are you sure you are calling your code when the document/DOM is loaded? It might be, that while calling getElementsByTagName, no input elements exist, but since NodeLists are dynamic, when the document loads, elements will contain all 28 inputs. – Rafael Apr 30 '11 at 21:44
It would seem that DOM isn't loaded. Copy and paste this in the URL of your page to see what it is after DOM loads. javascript:var elements=document.getElementsByTagName("input");alert("elements has "+elements.length+" children"); – adorablepuppy Apr 30 '11 at 21:48
You are right, it's because the DOM isn't loaded. Thanks both Rafael, and adorablepuppy! – mobius Apr 30 '11 at 22:04
feedback

1 Answer

up vote 3 down vote accepted

NodeList is a live collection and non-deferred scripts execute immediately (see script defer). Try this and you will get an idea of what happens:

<html>
  <head>
    <title></title>
    <style></style>
    <script type="text/javascript">
      var elements = document.getElementsByTagName("div");
      alert(elements.length); 
    </script>
  </head>
<body>
  <div>1</div>
</body>
    <script type="text/javascript">
      //var elements = document.getElementsByTagName("div");
      alert(elements.length); 
    </script>
</html>
link|improve this answer
He's saying console.log(elements) and console.log(elements.length) are reporting inconsistently. If you put that here, I'm betting it'll show 1 element, 1, and 2 elements, 2. – hyperslug Apr 30 '11 at 21:52
I got it. I will mark this as the correct answer since you got into the trouble of giving it with an example, although both comments above are also correct :) Thanks everyone! :) – mobius Apr 30 '11 at 22:04
A <script> outside the <body>? That's uncool. – Rudie Apr 30 '11 at 23:49
how did u solved it? – ikel Feb 22 at 5:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.