I am just starting out learning JavaScript and I have just reach the DOM section of my course.

I have a page with 10 tags on it and I have created the following JavaScript to tell me how many I have.

<script type="text/javascript">
var myLinks = document.getElementsByTagName("a");
console.log("We have ", myLinks.length ," many links on the page");
</script>

However in the console it reports this:

We have 0 many links on the page

This is not true as there are 10 links, 9 in the navgation section of the website and 1 in the footer.

If someone can tell me what I am doing wrong that would be great.

Thanks

link|improve this question

43% accept rate
2  
Put that code at the very bottom of the page (right before </body>) and it will work. – Šime Vidas Sep 25 '11 at 23:23
If you follow a typical setup, the script block appears in the <head> section of your page. When it is evaluated, there are not yet any <a> elements and thus myLinks will be an empty array, with a length of 0. – Majid Fouladpour Sep 25 '11 at 23:28
feedback

2 Answers

up vote 4 down vote accepted

You need to wrap this in an onload handler, because at the point of execution, the DOM isn't fully loaded:

<script type="text/javascript">
  window.onload = function() {
    var myLinks = document.getElementsByTagName("a");
    console.log("We have ", myLinks.length ," many links on the page");
  };
</script>
link|improve this answer
Ah yes! I remember now, thanks for reminding me about the way Javascripts loads depending on the position it has in the document. Unless of course you use that window.onload fuction. – Chudz Sep 25 '11 at 23:36
feedback

Put the script at the end of your document (before you close </body>):

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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