How wrong is it to place the script tag after the closing tag of the body (</body>). ?

<html>
  ....
  <body>
     ....
  </body>
  <script type="text/javascript" src="theJs.js"></script>
</html>

Thanks

link|improve this question

feedback

5 Answers

up vote 20 down vote accepted

It won't validate outside of the <body> or <head> tags. It also won't make much difference — unless you're doing DOM manipulations that could break IE before the body element is fully loaded — to putting it just before the closing </body>.

<html>
  ....
  <body>
     ....
     <script type="text/javascript" src="theJs.js"></script>
  </body>
</html>
link|improve this answer
Note that apps like YSlow will actually suggest that you do include your javascript at the end of the page. It may not speed up overall load time but it may load the relevant content first. Still, putting it just inside the </body> tag is best. – epalla Jun 14 '10 at 16:12
@epalla: if you put the script right at the end of the body tag there's no other content left to load by the time it gets there, so there should be little difference between placing it outside or just inside. You then have the added benefit of your page still validating, which was the point I was trying to make in my answer. – Andy E Jun 14 '10 at 16:19
1  
Yep, I was agreeing with you since your answer is good. I just wanted to add that there is a reason for putting JS at the bottom of the page instead of in the head as we've done for a long time. – epalla Jun 14 '10 at 16:34
feedback

Yes. Only comments and the end tag for the html element are allowed after the end tag for the body.

Browsers may perform error recovery, but you should never depend on that.

link|improve this answer
This is a better answer. There are too many new browsers out there with mobile coming into play to risk doing it wrong when all you have to is cut and paste a single closing tag. – Erik Reppen Mar 29 at 20:29
feedback

As Andy said the document will be not valid, but nevertheless the script will still be interpreted. See the snippet from WebKit for example:

void HTMLParser::processCloseTag(Token* t)
{
    // Support for really broken html.
    // we never close the body tag, since some stupid web pages close it before 
    // the actual end of the doc.
    // let's rely on the end() call to close things.
    if (t->tagName == htmlTag || t->tagName == bodyTag 
                              || t->tagName == commentAtom)
        return;
    ...
link|improve this answer
feedback

Yes. But if you do add the code outside it most likely will not be the end of the world since most browsers will fix it, but it is still a bad practice to get into.

link|improve this answer
feedback

My co-worker, who seems to me to be at an expert level in JavaScript (he's at the very least significantly more knowledgeable than I am), says that including SCRIPT tags outside and immediately after the BODY tag adds the benefit of eliminating blocking.

link|improve this answer
Do you have sources to an official document? – Pacerier Apr 30 at 18:52
It's no less blocking than placing the script tag before the closing body. Scripts are considered blocking when they stop content following them from being parsed until the script finishes executing. Placing them immediately before the closing body tag means there is no content left to block. – Andy E May 7 at 11:05
feedback

Your Answer

 
or
required, but never shown

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