Is it wrong to place the <script> tag after the </body> tag?

Posted by DanC on Stack Overflow See other posts from Stack Overflow or by DanC
Published on 2010-06-14T13:49:02Z Indexed on 2010/06/16 9:02 UTC
Read the original article Hit count: 163

Filed under:
|

Hello everyone,

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

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about html