Tagged Questions
13
votes
5answers
1k views
What's the best way to load Javascript into a page to optimize performance?
Is there a way to load my JavaScript into a page that will make it load faster?
14
votes
7answers
1k views
What should I use to automatically combine css/js files?
I'm aware of sprockets for combining javascript files, but haven't tried it. What are some other options and how do they stack up?
8
votes
9answers
376 views
How do I compress my JavaScript and/or CSS?
I know that there are ways to dynamically load it into the page, but if I want to compress my code so it loads even faster, how do I do it?
11
votes
4answers
2k views
Should I combine js/css files into a single file?
Both YSlow and Google's Page Speed add-ons recommend combining script (and style) files into a single file each to reduce the number of HTTP requests, and I can certainly see the point of this when ...