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
|
How wrong is it to place the script tag after the closing tag of the body (
Thanks
| |||
|
feedback
|
|
It won't validate outside of the
| |||||||||
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. | ||||
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:
| |||
|
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. | |||
|
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. | |||||
feedback
|