Hacker
Hacker

Reputation: 7906

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 javascript files are needed at the beginning. If I move them to the end, it might stop my site from working. That being the case, where instead should i put these scripts for best performance?

Upvotes: 5

Views: 3007

Answers (2)

Loktar
Loktar

Reputation: 35309

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.

Upvotes: 12

Ben
Ben

Reputation: 9895

you should put them just before the ending body tag </body>

Upvotes: 0

Related Questions