开发者

Narrowing down JavaScript performance issues on a page using a lot of jQuery calls?

My pages seem to be reacting slow.

There is a lot开发者_如何学Go of JavaScript (jQuery) code on the page. How can I narrow it down? What is taking so long?


The YSlow add-on is the best solution to know why your website is slow.

Narrowing down JavaScript performance issues on a page using a lot of jQuery calls?

There are many issues which could be the reason for slowness.

Combining many jQuery to one could help you increasing your performance.

Also you can put the script at the bottom of your page and CSS at top.


If you use Firefox, you can install Firebug and use the profiler.

You can read more about it in Understanding Firebug profiler output, and there is a tutorial in Firebug Tutorial – Logging, Profiling and CommandLine (Part I).

If you use Internet Explorer, you can use dynaTrace Ajax edition.

Read more about it in A Step-by-Step Guide to dynaTrace Ajax Edition, available today for public download .

There's also a built-in profiler in Google Chrome that you can play around with.

Both these solutions will help you narrow down what JavaScript function calls are the most costly, and with repeated profilings you will be able to see the effect your changes has.

Using tools like these will not only make you a better programmer (if you take the lessons to heart, and avoid the same mistakes they point out in the future), they will also give you a new appreciation of what happens in your code, since you will get a behind-the-scenes glimpse you haven't seen before ;)

Also, if you don't know YSlow, like Wazzy is talking about - get to know it... maybe your problem isn't even slow JavaScript code :)

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜