Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was reading a tutorial and the author mentioned to include Javascript files near closing body tag (</body>) in HTML.

I was wondering for what type of functionality I should not declare/define JavaScript include in the head section? It makes sense to me include JavaScript like Google Analytics near the closing body tag. Where should I be careful in defining JavaScript include near the closing body tag?

share|improve this question
How about picking an answer, then :) – skaffman Jun 25 '09 at 22:01
@Skaffman - done. – HappyApe Jun 26 '09 at 9:19

11 Answers

up vote 23 down vote accepted

It will often be argued that for speed purposes you should put script tags right at the end of the document (before the close body tag). While this will result in the fastest page load, it has some serious downsides.

Firstly, a common idiom with Webpage development is to have a header file, a footer file and your content in the middle. To keep unnecessary Javascript to a minimum, you'll often want to put code snippets in individual pages.

If you include jquery, for example, at the end of the document, your jquery code snippets (like document ready stuff) must happen after that. That can be awkward from a development point of view.

Secondly, in my experience, because the page load is faster, you can end up noticing certain effects being applied because the page has already loaded by the time they are applied.

For example if you put a table in a document and right before the body close tag put:

$(function() {
  $("tr:nth-child(odd)").addClass("odd");
});

with appropriate styling, that effect being applied will often be visible. Personally I think that makes for a bad user experience potentially. I think often you're better off having the page load slightly slower (by putting scripts at the top) if you don't get disconcerting visual effects.

I generally advocate effective caching strategies so you only have to download Javascript files when they change, as in Supercharging Javascript in PHP (but the principles apply to any language, not just PHP) and still putting scripts at the top. It's far more convenient.

share|improve this answer
"it has some serious downsides." .. yes, am asking about these. Examples would help. Thanks – HappyApe Jun 18 '09 at 14:56
Care to clarify what those downsides are? – Brian Ramsay Jun 18 '09 at 14:57
@cletus - thanks for your explanation. – HappyApe Jun 18 '09 at 15:10

The Yahoo YSlow tool has advice on this:

The problem caused by scripts is that they block parallel downloads. The HTTP/1.1 specification suggests that browsers download no more than two components in parallel per hostname. If you serve your images from multiple hostnames, you can get more than two downloads to occur in parallel. While a script is downloading, however, the browser won't start any other downloads, even on different hostnames.

In some situations it's not easy to move scripts to the bottom. If, for example, the script uses document.write to insert part of the page's content, it can't be moved lower in the page. There might also be scoping issues. In many cases, there are ways to workaround these situations.

An alternative suggestion that often comes up is to use deferred scripts. The DEFER attribute indicates that the script does not contain document.write, and is a clue to browsers that they can continue rendering. Unfortunately, Firefox doesn't support the DEFER attribute. In Internet Explorer, the script may be deferred, but not as much as desired. If a script can be deferred, it can also be moved to the bottom of the page. That will make your web pages load faster.

share|improve this answer
1  
An added bonus of this is if all your scripts come just before </body>, you don't have to set event listeners waiting for the page to finish loading since all elements above the script tag are available for use. No more $(document).ready() for you jQuery users or window.addEvent('domready') for Mootools users. – tj111 Jun 18 '09 at 15:09
3  
Qute possibly, although I wouldn't recommend it. Using the listeners will still be safer, and is guaranteed to work. – skaffman Jun 18 '09 at 15:11
2  
Actually, Firefox 3.5, which will probably be released later this month, supports @defer. See developer.mozilla.org/En/HTML/Element/Script – Ms2ger Jun 19 '09 at 11:55

By putting them in the <head/> you force the browser to download the files before it can render a page. That causes the perceived load time to slow down.

By placing them in the footer, right before the closing body tag, the browser will not load them until it reaches that point in the parsing of the HTML. That means that the scripts will run later in the page load process but will not block the asset download and rendering process.

Which works best is up to you and how you develop your code.

share|improve this answer
Yeah, exactly. I'd say in general, you'd want to put them on top (in the <head>) as that's where most people will look. – cdmckay Jun 19 '09 at 1:12

Google pagespeed have some nice explanation on how to parallelize downloading of scripts.

Still their advice is to put them in the head of your page.

share|improve this answer

Script tags should generally be in the head section. The exceptions are when they do significant immediate processing that should be delayed until as late as possible in the page load to avoid interfering with the page coming up, as with Google Analytics, or when the script tag's actual placement is a part of its behavior.

share|improve this answer

The reason for declaring near the end is that your page can begin drawing before having to wait to fetch the .js.

Ergo, stuff you would want at the end would have no effect on the page rendering, and vice versa.

share|improve this answer

I believe it's better to place script tags just before the closing body tag. Because:

  • Elements are blocked from rendering if they are below the script.
  • In IE6, IE7 resources in the page are blocked from downloading if they are below the script.

From this article. Also Yahoo's performance rule 6 is Move Scripts to the Bottom

share|improve this answer

The only reason for putting it near the end of the body, AFAIK, is to be able to execute the JavaScript after the web browser has parsed your HTML document. E.g. if your JavaScript deals with "all elements named hello", the browser needs to read the entire document before executing your JavaScript. Makes sense, right?

In e.g. JQuery, you can put your JavaScript anywhere in your document and use:

$(document).ready(function () {
  // your code here
});

...to make sure the entire document has been loaded into the DOM before executing the inner function. Of course, this can be done with normal JavaScript as well, but be careful not to break compatibility with some browsers, because their needs tend to differ a lot.

share|improve this answer
Does this mean..if I use Jquery for the most of my functionality then I can have my scripts at the bottom?? Thanks – HappyApe Jun 18 '09 at 15:03
Yeah, basically, the ready handler works this way: if all the elements aren't loaded yet, it'll put your function in a queue and run it when the page is ready. If the page is ready (all elements are loaded), it'll run it right away. – cdmckay Jun 19 '09 at 1:13

You should do it near </body>. The reason is simple: If you place it into the head area, the files must be loaded before the body area can be. For that time, the user just sees a white screen.

But it depends on your website. I would load frameworks like mootools in the head area, other functions for events or AJAX or something should be loaded near </body>.

share|improve this answer

I like to load a small js file in the head, that handles (1) anything that happens before the page is rendered and (2) the loading of other script files after the page loads, or as needed.

share|improve this answer

The Place of the <script> Element

The script elements block progressive page downloads.
Browsers download several components at a time, but when they encounter an external script, they stop further downloads until the script file is downloaded, parsed, and executed.
This hurts the overall page time, especially if it happens several times during a page load.
To minimize the blocking effect, you can place the script element toward the end of the page, right before the closing tag.
This way there will be no other resources for the script to block. The rest of the page components will be downloaded and already engaging the user.
The worst antipattern is to use separate files in the head of the document:

<!doctype html>
<html>
<head>
    <title>My App</title>
    <!-- ANTIPATTERN -->
    <script src="jquery.js"></script>
    <script src="jquery.quickselect.js"></script>
    <script src="jquery.lightbox.js"></script>
    <script src="myapp.js"></script>
</head>
<body>
...
</body>
</html>

A better option is to combine all the files:

<!doctype html>
<html>
<head>
    <title>My App</title>
    <script src="all_20100426.js"></script>
</head>
<body>
    ...
</body>
</html>

And the best option is to put the combined script at the very end of the page:

<!doctype html>
<html>
<head>
    <title>My App</title>
</head>
<body>
    ...
    <script src="all_20100426.js"></script>
</body>

“JavaScript Patterns, by Stoyan Stefanov (O’Reilly). Copyright 2010 Yahoo!, Inc., 9780596806750.”

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.