Possible Duplicate:
Where is the best place to put <script> tags in HTML markup?
I read this article. Now I am wondering, should I move my Javascript links into the <body> tags rather than the <head> tags for better performance (if the script is not needed during run-time)?
If so, should I put it right after the opening <body> tag, or right before the closing </body> tag?
Does it really matter where I put the Javascript if all the code is used in a window.onload function?
Thank you!