Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there something like "Firebug for IE" (for debugging JavaScript)?

I'm trying to fix some JavaScript bugs. Firebug makes debugging these issues a lot easier when working in Firefox, but what do you do when the code works fine on Firefox but IE is complaining?

like image 215
Cristian Avatar asked Aug 12 '08 00:08

Cristian


People also ask

Can we use Firebug in IE?

Installing Firebug on IE, Safari, Chrome or OperaFirebug Lite provides you with the same inspections capability that regular Firebug does. You can click the Inspect button and hover over sections of the page to view the computed style and DOM properties for the tag selected.

What is the alternative for Firebug?

The best alternative is Firefox Developer Tools, which is both free and Open Source. Other great apps like Firebug are Google Chrome Developer Tools, HTTP Debugger, SplineTech Javascript Debugger and HttpFox.

What is Firebug in JavaScript?

Firebug is a discontinued free and open-source web browser extension for Mozilla Firefox that facilitated the live debugging, editing, and monitoring of any website's CSS, HTML, DOM, XHR, and JavaScript. Firebug.


2 Answers

you can also check out the IE Developer Toolbar which isn't a debugger but will help you analyze the contents of your code.

Visual Studio will help with the debugging

Fiddler should help analyse the traffic travelling to and from your browser

like image 156
lomaxx Avatar answered Sep 30 '22 16:09

lomaxx


You can try Firebug Lite or use Visual Studio to debug the JavaScript.

like image 23
Lance Fisher Avatar answered Sep 30 '22 14:09

Lance Fisher