Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Where is the best place to put <script> tags in HTML markup?

I always thought that it's better to put it in the head (maybe because it is loaded first in the head and also to group all the scripts in the head for easy reading), but I found several examples over Internet (bootstrap documentation, MVC4... etc) where the script tag with the reference to jQuery () is inserted into the body:

<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<h1>Hello, world!</h1>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>

What's the best practice?

share|improve this question
You usually put them just before the closing body-tag, so the page can start loading images and other HTML before doing several .js-files requests. – ninja Oct 25 '12 at 14:38
There are pros and cons for both approaches. The best for page load would be to put it at the bottom, however that can make it very difficult for certain structures, such as an application built around server-side code returning the same footer and header for every page, where each page has it's own js defined within it. – Kevin B Oct 25 '12 at 14:41
1  

marked as duplicate by Sparky, César Bustíos, Ryan, canon, Sidnicious Oct 25 '12 at 17:54

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.

5 Answers

the <script> tag with the jQuery library reference must be inside <head> or <body> tag?

Yes, either.

There can be performance benefits to putting it in one or the other (particularly at the end of the body) although that is a tradeoff between delaying when the JS can run and blocking the loading of other content while the JS downloads and parses.

share|improve this answer
Surely there's something to be added here regarding aync loading? stackoverflow.com/questions/1834077/… – Grant Thomas Oct 25 '12 at 14:47

They go at the end of the body.

share|improve this answer

The best practice is use script at the bottom of the page .It will decrease the page rendering speed.

read this article Yahoo best practices for page speed

share|improve this answer

http://developer.yahoo.com/performance/rules.html#js_bottom

The problem caused by scripts is that they block parallel downloads. . 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.

So yeah.. At the bottom of your <body>

share|improve this answer

The tag in head executes before the body is rendered. You can have tag out side the head tag before the closing body tag. If you have tag before body then it executes after the html controls are being rendered. This post is relevant and could be useful.

jquery has document ready event that makes it irrelevant where the tag is, as script executes when all DOM elements are ready.

share|improve this answer
"You can have tag out side the head tag" — only if it inside the body (at least if you want to have an HTML document). "If you have tag before body then it executes after the html controls are being rendered" — No, it executes before the <body> tag is parsed, so before any of the controls are rendered. "document ready event makes it irrelevant where the tag is" — This is adding an explicit delay, sometimes you don't want that delay. – Quentin Oct 25 '12 at 14:46
Thanks Quentin, I knew just missed it. – Adil Oct 25 '12 at 14:47
Reason for down vote? – Adil Oct 25 '12 at 14:48

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