Sneaky Abstractions

Subscribe to my Feed, follow me on , recommend me on Working With Rails or see my code on GitHub

Comment

You're viewing a comment to the post Optimising by cheating - how to trick your users into thinking your site is fast

By Luke Francl at

One of the YSlow guidelines is based on improving page load time by moving JavaScript to the bottom of the page. Browsers can’t use progressive rendering while downloading JavaScript. Also, script downloads block parallel downloads of other content. If you put the JavaScript at the bottom of your page (right before </body> if possible).

http://developer.yahoo.com/performance/rules.html#js_bottom

If you haven’t already done this, it may help, too.

Love everybody and everything, all the time.