Reputation:
I always put my script tags at the bottom of the page since it's good practice to load scripts after things like HTML/CSS and text has finished loading. I just found out about the defer attribute which basically does the same thing, that is it waits till the page has finished loading before fetching and executing scripts.
So if using the defer attribute is it necessary to physically place script tags at the bottom of the page vs inside the head tag?
I find it better for readability to keep script tags inside the head section.
<script src="script.js" defer="defer"></script>
or
<script defer="defer">
// do something
</script>
Upvotes: 36
Views: 8301
Reputation: 8354
Best practices have shifted since these answers were written, because support for the defer
attribute has grown to 98% globally.
Unless you need to optimize speed for older browsers, you should put the script in the head and mark as defer. This 1) keeps all your script references in one place (more maintainable) and 2) makes the browser aware of the script sooner, which lets it start prioritizing resources earlier.
The performance difference difference should be negligible for most pages, because the browser's pre-loader probably isn't going to start downloading a deferred script until the whole document is parsed anyway. But, it shouldn't hurt, and it leaves more work for the browser, which is generally best.
Upvotes: 8
Reputation: 2661
The current best practice? Use deferred scripts in order in the head, unless you need to support older browsers (IE < 10, Opera Mini, etc.) - 97.45% browser usage (ref)
Why? With defer
, parsing finishes just like when we put the script at the end of the body tag, but overall the script execution finishes well before, because the script has been downloaded in parallel with the HTML parsing. This scenario will trigger the faster domInteractive
event that is used for page loading speed. With async
, the order in which your script will execute varies based on how fast the script is fetched, so order can be compromised. Futhermore, async
scripts are executed inline and pause the parsing of the HTML.
Upvotes: 13
Reputation: 131
There are different reasons why using defer in a script at the bottom of the HTML makes sense:
It's important to know that every browser handels things like "defer" and also the busy indicators a little bit different.
Best practice should be: Put scripts at the bottom with defer.
Besides the readability aspect I only see advantages by putting scripts at the bottom with defer in comparison to "Script in Head with defer" or "Script at the bottom without defer".
Upvotes: 3
Reputation: 20235
First of all, the defer attribute is not supported by all browsers (and some that do support it just ignore it). Putting the script at the bottom of the page ensures that all HTML elements above it have been loaded into the DOM before the script executes. An alternative is using the onload
method or using jQuery's DOM ready function.
Upvotes: 2
Reputation: 106375
While I agree with you that using 'defer' and placing scripts in header will improve readability, this attribute is still not supported by both desktop and mobile Opera (check this table for details).
Upvotes: 1