开发者

Multiple requests to same resources when using multiple +1 and "Like" buttons

My site is http://fridgecow.com. Thanks to the blog I recently installed to the front page, I now have over 100 HTTP requests, and most of them to the sam开发者_JAVA技巧e site. I have done all I can on my side (sprited, condensed, etc) but still I end up with a massive load time.

Is there any "Share" buttons that get round this problem (maybe with an "href" attribute)?


combine css files into single css file and js files into single js file.

Or

you can use these two sites, they will combine your css and js files

http://www.boxjs.com/ http://www.boxcss.com/

you do some thing like this on your site and they will combine files for you

<script src="http://www.boxjs.com/box.js"></script>
Box('http://mywebsite.com/scripts/', [
        'plugins/jquery.js',
        'plugins/json2.js',
        'plugins/jquery-class.js'
]);

similar for css

or write your own code that performs the following

  • do not request all your css/js file on top or bottom rather load only those files that are neccessary at the beginning.
  • rather create a javascript file that loads each file one after other in sequential order.

There are many strategies that you may choose

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜