Put Scripts At The Bottom
Yslow recommends that you should put scripts at the bottom of the page. Where exactly should I put them, after the body end tag? My whole site runs in jquery, so all the javascri
Solution 1:
You should put them right before the closing body tag. Make sure your scripts are being initiated properly using
$(document).ready()
And you should have no issues.
Post a Comment for "Put Scripts At The Bottom"