This question already has an answer here:
I have seen both ways, both implementation work just the structures are a bit different. In your experience, which work better and why?
|
This question already has an answer here: I have seen both ways, both implementation work just the structures are a bit different. In your experience, which work better and why? |
||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
I would answer this with multiple options actually, the some of which actually render in the body.
Footnote: "When you need it and not prior" applies to the last item when page blocking (perceptual loading speed) - the users perception IS thier reality, if it is percieved to load faster, it does load faster (even though stuff might still be occuring in code). EDIT: references:
Side note: IF you place script blocks within markup, it may effect layout in certain browsers by taking up space (ie7 and opera 9.2 are known to have this issue) so place them in a hidden div (use a css class like: Standards: Note that the standards allow placement of the script blocks virtually anywhere if that is in question: http://www.w3.org/TR/1999/REC-html401-19991224/sgml/dtd.html and http://www.w3.org/TR/xhtml11/xhtml11_dtd.html EDIT2: Note that whenever possible (always?) you should put the actual Javascript in external files and reference those - this does not change the pertinent sequence validity. |
|||||||
|
|
The problem with writing scripts at the head of a page is blocking. The browser must stop processing the page until the script is download, parsed and executed. The reason for this is pretty clear, these scripts might insert more into the page changing the result of the rendering, they also may remove things that dont need to be rendered, etc. Some of the more modern browsers violate this rule by not blocking on the downloading the scripts (ie8 was the first) but overall the download isn't the majority of the time spent blocking. Check out Even Faster Websites, I just finished reading it and it goes over all of the fast ways to get scripts onto a page, Including putting scripts at the bottom of the page to allow rendering to complete (better UX). |
|||||||||||||
|
|
W3Schools have a nice article on this subject. Scripts in
Scripts in
|
|||
|
|
|
Head, or before closure of body tag. When DOM loads JS is then executed, that is exactly what jQuery document.ready does. |
|||
|
|
|
I always put my scripts in the header. My reasons:
|
|||
|
|