0

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...

Gyum Fox
  • 3,287
  • 2
  • 41
  • 71
  • possible duplicate of [Debugging JavaScript in IE7](http://stackoverflow.com/questions/361635/debugging-javascript-in-ie7) – Mgetz Sep 04 '13 at 11:32

1 Answers1

1

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>
glautrou
  • 3,140
  • 2
  • 29
  • 34