Is it wrong to place the <script> tag after the </body> tag?
- by DanC
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