views:

634

answers:

10

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?

+10  A: 

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.

cletus
"it has some serious downsides." .. yes, am asking about these. Examples would help. Thanks
Wbdvlpr
Care to clarify what those downsides are?
Brian Ramsay
@cletus - thanks for your explanation.
Wbdvlpr
+11  A: 

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.

skaffman
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
Qute possibly, although I wouldn't recommend it. Using the listeners will still be safer, and is guaranteed to work.
skaffman
Actually, Firefox 3.5, which will probably be released later this month, supports @defer. See https://developer.mozilla.org/En/HTML/Element/Script
Ms2ger
+1  A: 

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.

Colin Pickard
+2  A: 

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.

chaos
A: 

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>.

Gushiken
A: 

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.

Deniz Dogan
Does this mean..if I use Jquery for the most of my functionality then I can have my scripts at the bottom?? Thanks
Wbdvlpr
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
+5  A: 

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.

Bryan Migliorisi
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
+1  A: 

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.

HeDinges
A: 

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.

kennebec
+1  A: 

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

valums