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

How to organise javascript in script tags for a Django project

Is there somewhere to learn how javascript is loaded into the html page and when it is available to use function etc

1 Answer

josephweiss2
josephweiss2
6,983 Points

It loads when it reaches that line in the html, so if you put it at the end it will load first all elements from the html and then load the java script, or the same will be if you put it at the beginning so it will load first the java script and might make problems in some cases