10

Is there a better way to debug JavaScript than MS Script Editor? I am searching for something like Firebug. Firebug Lite doesn't offer this functionality, though. ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­

ɢʀᴜɴᴛ
  • 32,025
  • 15
  • 116
  • 110
aadvaark
  • 617
  • 1
  • 6
  • 11

9 Answers9

7

Use Visual Studio 2008.

The Web Development Helper from Nikhilk is useful as is the Internet Explorer Developer Toolbar (http://www.microsoft.com/en-us/download/details.aspx?id=18359). They are not as good as FireBug though :-(

Maurice
  • 27,582
  • 5
  • 49
  • 62
5

Though not strictly debuggers, these are useful tools for your arsenal

Paul Dixon
  • 295,876
  • 54
  • 310
  • 348
3

I've used IE WebDeveloper. It's not free and not as nice as Firebug, but got the job done for me. http://www.ieinspector.com/dominspector/index.html

Filip Korling
  • 615
  • 3
  • 7
1

There is a blog post that goes over most of the known ways to debug javascript in IE, with pros and cons.

mkoryak
  • 57,086
  • 61
  • 201
  • 257
1

The only other debugger for JavaScript in the IE context is Visual Studio, but it'll cost you. What problems are you having with the script debugger that leads to think you need a better debugger?

I suspect that what you are after are the additional features that aren't specifically about debugging JavaScript but analysing the HTML DOM that has been modified by the JavaScript and the monitoring of the conversation with the server.

The IE developer toolbar I find particularly invaluable for debugging web apps as is Fiddler.

Sebastian Zartner
  • 18,808
  • 10
  • 90
  • 132
AnthonyWJones
  • 187,081
  • 35
  • 232
  • 306
1

I would try and go for DebugBar. It's not as nice as Firebug, but it's very useful for javascript debugging...

Gad
  • 41,526
  • 13
  • 54
  • 78
1

Great article mkoryak

I used visual studio web developer as in this linked article http://www.berniecode.com/blog/2007/03/08/how-to-debug-javascript-with-visual-web-developer-express/

helios456
  • 1,624
  • 16
  • 24
0

You can download the Microsoft Visual Web Developer 2008 Express Edition for free.

Kevin Hakanson
  • 41,386
  • 23
  • 126
  • 155
0

In newer versions of Internet Explorer (10.0+ I guess) the developer tools are integrated.

The debugger panel there allows you to debug your JavaScript like in Firebug, the Firefox DevTools or the Chrome DevTools.

Sebastian Zartner
  • 18,808
  • 10
  • 90
  • 132