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 trialStephanie 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?