Ok.. So I have done a bit of research and haven't found much on this. So was wondering if someone can enlighten me.
I like to load my Script at the bottom of the page like below
<html>
  <head>
    CSS Goes here
  </head>
    <body>
       <div id="container">
       </div>
       <script></script>
       <script></script>
    </body>
 </html>
Which works fine in all modern browsers but I found in IE 8 and 7 the JS had to be in the head instead of in the body for it to work. So was wondering why and what the work around is as I would prefer to load JS files after everything else.
Thanks
