vote up 0 vote down star

I do web site debugging with IE (as well as other browsers) but my problem is with IE, as it is the browser i usually use for regular browsing.

In order to debug you need to turn on debug mode in the advanced options. Ok, fine. Its turned on. But the issue I have that is quite annoying is that it seems 30% of websites have JS errors, and IE in dbeug mode causes a popup. This is now also the case with SO as well, where i spend a lot of time now. Everytime i edit i get a js error pup up.

I guess it comes down to this: Does anyone know of a way to QUICKLY enable and disable debug mode, such as a Hokey, or an add-in, so you dont have to go into Advanced Options to enable and disable?

Thanks!

Edit: I should mention I do mainly asp.net development and use vs.net. I do already use FF/Firebug for some scenarios and non ie related issues. I'm not really looking to switch around what I do or how I do it, mainly looking for a solution to the problem at hand. Even a workaround that doesnt involve using other browsers/debuggers.

flag

22% accept rate
not trolling, but actually curious: why on earth do you still use IE for everyday browsing?? – nickf Oct 12 '08 at 11:28
Because I actually like it! Theres several reasons actually, mainly because i use a bunch of stuff that pretty much only runs in IE, for example, MS Exchange 2003 Outlook Web Access. I could use FF but i lose all the nice features of it. So I would just rather stick with a single browser... – mattlant Oct 12 '08 at 11:38
even if its not the best. – mattlant Oct 12 '08 at 11:38

3 Answers

vote up 1 vote down

I recommend using Firefox + IE Tab, which would allow you to easily and quickly change the rendering engine used for sites that require IE. This way the bulk of your browsing can be done in non-IE tabs and you can avoid the debug popups.

link|flag
vote up 1 vote down

have a look at debugbar its free for personal use, 60 days trial for commercial. It works a bit like fireug for firefox but obviously its gonna cost to use

link|flag
thx, i will take a look at it to see how well it fits. If it alows me to still use vs as the main debugger but can be anabled and disabled, its definately something i would use. Thanks agian. – mattlant Oct 12 '08 at 11:25
vote up 1 vote down

The quickest way I can think of would be to write a small utility to:

  • Close all IE windows
  • Toggle the REG_SZ registry value HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\Disable Script Debugger (from "yes" to "no" or vice versa)
  • Optionally restart IE

As far as I know, there's no way to make IE recognize the changed registry value without restarting it, even using an IE plugin.

As an aside, unless the IE/VS integration is critical for you, you may want to look into the combination of Firefox and Firebug for Javascript debugging: I find it much nicer in general, and debugging can easily be enabled or disabled, either interactively or on a per-site basis.

link|flag
I do use FF/Firebug also, but I still need to use IE. – mattlant Oct 12 '08 at 11:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.