Gyum Fox
Gyum Fox

Reputation: 3627

Is there any JavaScript debugger for IE < 8?

Is there any light-weight JavaScript debugger for IE < 8?

I've been using Visual Studio, but it's a bit of a hassle when you need to install it to a client computer to debug IE7 and lower...

Upvotes: 0

Views: 46

Answers (1)

glautrou
glautrou

Reputation: 3198

You can use Firebug Lite.

Simply include the following code in your master page:

<script type="text/javascript" src="https://getfirebug.com/firebug-lite.js"></script>

Upvotes: 1

Related Questions