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 Basics (Retired) Introducing JavaScript Where Does JavaScript Go?

pauloliva
pauloliva
7,889 Points

Best Practice: Where to include your <script> tags

I have read in some places that for best performance we should include <script> elements at the end of our body tags, also, I have read that it's best practice to include at the end of our html OUTSIDE the <body> element. Now, I'm reading that the best practice is to include <script> elements on your head and just add 'async' at the end of it (HTML5 Only).

Is the last statement correct? What is the truly best practice when adding <script> elements to our markup? A lot of the information on the web seems outdate (2009-2011) when it comes to this topic.

Thanks!

2 Answers

Alen Subasic
Alen Subasic
12,279 Points

Here's what happens when a browser loads a website:

Fetch the HTML page (e.g. index.html) Begin parsing the HTML The parser encounters a <script> tag referencing an external script file. The browser requests the script file. Meanwhile, the parser blocks and stops parsing the other HTML on your page. After some time the script is downloaded and subsequently executed. The parser continues parsing the rest of the HTML document. Step 4 causes a bad user experience. Your website basically stops loading until you've downloaded all scripts. If there's one thing that users hate it's waiting for a website to load.

Why does this even happen?

Any script can insert its own HTML via document.write() or other DOM manipulations. This implies that the parser has to wait until the script has been downloaded & executed before it can safely parse the rest of the document. After all, the script could have inserted its own HTML in the document.

However, most javascript developers no longer manipulate the DOM while the document is loading. Instead, they wait until the document has been loaded before modifying it. For example:

<!-- index.html --> <html> <head> <title>My Page</title> <script type="text/javascript" src="my-script.js"></script> </head> <body> <div id="user-greeting">Welcome back, user</div> </body> </html> Javascript:

// my-script.js document.addEventListener("DOMContentLoaded", function() { // this function runs when the DOM is ready, i.e. when the document has been parsed document.getElementById("user-greeting").textContent = "Welcome back, Bart"; }); Because your browser does not know my-script.js isn't going to modify the document until it has been downloaded & executed, the parser stops parsing.

Antiquated recommendation

The old approach to solve this problem was to put <script> tags at the bottom of your <body>, because this ensures the parser isn't blocked until the very end.

This approach has its own problem: the browser cannot start downloading the scripts until the entire document is parsed. For larger websites with large scripts & stylesheets, being able to download the script as soon as possible is very important for performance. If your website doesn't load within 2 seconds, people will go to another website.

In an optimal solution, the browser would start downloading your scripts as soon as possible, while at the same time parsing the rest of your document.

The modern approach

Today, browsers support the async and defer attributes on scripts. These attributes tell the browser it's safe to continue parsing while the scripts are being downloaded.

async

<script type="text/javascript" src="path/to/script1.js" async></script> <script type="text/javascript" src="path/to/script2.js" async></script> Scripts with the async attribute are executed asynchronously. This means the script is executed as soon as it's downloaded, without blocking the browser in the meantime. This implies that it's possible script 2 is downloaded & executed before script 1.

According to http://caniuse.com/#search=async, 80% of all browsers support this.

defer

<script type="text/javascript" src="path/to/script1.js" defer></script> <script type="text/javascript" src="path/to/script2.js" defer></script> Scripts with the defer attribute are executed in order (i.e. first script 1, then script 2). Like the async attribute, this does not block the browser.

Unlike async scripts, defer scripts are only executed after the entire document has been loaded.

According to http://caniuse.com/#search=defer, 80% of all browsers support this. 88% support it at least partially.

An important note on browser compatibility: in some circumstances IE <= 9 may execute deferred scripts out of order. If you need to support those browsers, please read this first!

Conclusion

The current state-of-the-art is to put scripts in the <head> tag and use the async or defer attributes. This allows your scripts to be downloaded asap without blocking your browser.

The good thing is that your website should still load correctly on the 20% of browsers that do not support these attributes, while speeding up the other 80%.

Source: http://stackoverflow.com/a/24070373

pauloliva
pauloliva
7,889 Points

Thanks for the reference.

Thanks for the explanation Alen Subasic

Do note that if you use defer/async, scripts that depend on each otherβ€”i.e. jQuery and jQuery UIβ€”they may not work in IE9 or below (depending on their actual loading order at that time):

https://github.com/h5bp/lazyweb-requests/issues/42

This is contrary to what was stated in the comment above: The good thing is that your website should still load correctly on the 20% of browsers that do not support these attributes, while speeding up the other 80%.

I don't know if it's a good idea or even possible/effective to run a quick browser compatibility check with something like Modernizr before loading the rest of the page (a script at the beginning of the page that executes before even rendering the DOM from the HTML file) and then dynamically add the defer/async attributes to the other script tags if the browser supports it.

I suppose the best solution is to have all your JavaScript files compiled to one compressed file and have that loaded with the defer/async attribute? Ideas/tips/remarks Dave McFarland ?

Thx!

Awesome answer, thank you.

There are words missing in your sentence "The old approach to solve this problem was to put tags at the bottom of your , because this ensures the parser isn't blocked until the very end." - I think it should be "your HTML file"