Pashec
Pashec

Reputation: 23289

Start javascript profiling in IE from js-code

I want to start and stop js-profiling from my js-code in Internet Explorer. Like we can do it in Firefox through: - console.profile() - console.profileEnd()

Does anybody know whether it is possible in IE?

Upvotes: 0

Views: 365

Answers (2)

Andreas Grabner
Andreas Grabner

Reputation: 156

For JavaScript, XmlHttpRequest, DOM Access, Rendering Times and Network traffic for IE6, 7 & 8 you can use the free dynaTrace AJAX Edition

Upvotes: 1

Fabien Ménager
Fabien Ménager

Reputation: 140195

I think you are using Firebug with Firefox, so you could use Firebug Lite.

And IE8 has a built-in console, you should read the docs, there are maybe the same functions.

Upvotes: 0

Related Questions