55

Does anyone know a tool for Profiling JavaScript in IE?

List available:

Daniel Silveira
  • 41,125
  • 36
  • 100
  • 121

7 Answers7

16

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

Richard Ev
  • 52,939
  • 59
  • 191
  • 278
user327872
  • 111
  • 1
  • 3
  • One note: looks like they now treat IE7 as a legacy browser, which means the free version no longer supports it. – adamjford Dec 30 '11 at 17:14
10

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

Andrew
  • 2,810
  • 2
  • 27
  • 14
7

JavaScript Profiler is a decent tool.

Greg Hurlman
  • 17,666
  • 6
  • 54
  • 86
1

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

user257474
  • 61
  • 1
  • 1
1

YUI also provides a profiler.

Walter Rumsby
  • 7,435
  • 5
  • 41
  • 36
0

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

danb
  • 10,239
  • 14
  • 60
  • 76
-7

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

Firebug also has a built in profiler.

ScottKoon
  • 3,483
  • 6
  • 27
  • 29