Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Foundations Variables Basics

Move the script tag where it'll get executed after the page loads. No matter where I move it I get an error about null.

It should be in <head> area correct?

3 Answers

Markus Ylisiurunen
Markus Ylisiurunen
15,034 Points

Hi,

you should move it to the end of the body tag. Make sure it's the last tag inside of the <body> tag.

Rita Han
Rita Han
1,834 Points

It will be located at the bottom of the </html>. Could someone explain to me why you'd put it at the end?

This will ensure that all necessary contents are displayed or loaded before any other computation are performed. And the user doesn't have to wait for the page to finish all processes before accessing the contents of a site.