views:

5550

answers:

7

Does anyone know a tool for Profiling JavaScript in IE?

List available:

+4  A: 

JavaScript Profiler is a decent tool.

Greg Hurlman
A: 

I don't think debugbar has a profiler.. but it does have a debugger and a console... so you can fake it...

danb
A: 

We use Firebugs console.log, console.time and console.timeEnd (I think) a lot.

Firebug also has a built in profiler.

ScottKoon
The question specifically asks for a profiler for IE.
Tim Down
A: 

YUI also provides a profiler.

wrumsby
+4  A: 

The Internet Explorer 8 beta (2) has a builtin Javascript profiler (in the developer toolbar). It's worth playing with at least...

Andrew
A: 

js-profiler also provide a profiler that is working in any browser and does not depend on any framework.

+2  A: 

Checkout http://ejohn.org/blog/deep-tracing-of-internet-explorer/ the dynaTrace tool shown here is fantastic and works with IE7.