Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Stephanie Grove
Courses Plus Student 2,144 PointsMove 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
15,034 PointsHi,
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
1,834 PointsIt will be located at the bottom of the </html>. Could someone explain to me why you'd put it at the end?

Mustapha Rufai
Courses Plus Student 2,253 PointsThis 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.
Dave McFarland
Treehouse TeacherDave McFarland
Treehouse TeacherCan you show us your code?