Why are JS scripts usually place in the header of a document? Is it required by standards, or is it just a convention with no particular reason?
|
|
|||||||||
|
|
|
It's just a convention. It's usually recommended to put scripts at the end of the body so the page can display before loading them, which is always a plus. Also, |
||||
|
|
|
It depends on what the script is doing. If your code is wrapped in onLoad event then it doesn't matter since it will return almost immediately and not block otherwise you should put it where it fits because the placement does matter. As for putting it at the end, it does give a little extra time for user to start looking at the page. Just ask yourself a question - does my site work without javascript? If it doesn't, then in my opinion it doesn't mater where you put it since onLoad code will only be executed when the DOM has been fully loaded (that includes binary content like images). If you can use it without javascript then put it at the end so that images can load faster. Also note that most JS libraries use special code which works around the onLoad problem and uses custom event for this which gets fired once DOM has loaded and doesn't wait for binary data. Now that I wrote all that, I got a question of my own. Does using say jQuery's
and putting the script tag at the end of page is the same as using onLoad event and putting it at the start? It should be the same because browser would load all images before loading the script which is the last one in the list. If you know the answer leave a comment (I'm too lazy and it's too late to test it atm). |
||||||||||
|
|
|
See http://developer.yahoo.com/performance/rules.html#js_bottom Although past practice has often been to place them in the header for the sake of centralizing scripts and styles (and the like), it is advisable now to place the scripts at the bottom to improve loading speed of the rest of the page. To quote:
|
||
|
|
