vote up 2 vote down star
2

Is there an equivalent to Firefox's "Error console" in other browsers? I find the error console handy for finding JavaScript errors, but there doesn't seem to be an equivalent simple way to see error messages on other browsers. I'm interested in Internet Explorer, Opera and Google Chrome.

Post script: I'm not looking for an alternative to Firefox's error console, it is fine for me. I don't need FireBug. Also I am aware of the Developer Tools in Google Chrome, but I can't make sense of it. I just want to get the error messages. Is there some way to get sane error messages out of it? I haven't been able to. My default browser is Chrome on Windows and Linux, but if I do something in JavaScript, I end up having to switch to Firefox to get the error messages from the error console.

flag

1  
★ This question was entered entirely via a Nintendo Wii. ★ – Kinopiko Oct 30 at 8:36
This comment was entered entirely on a desktop computer (running Opera, as it were). – Artelius Oct 30 at 9:05
I got some surprised remarks on meta.stackoverflow.com when I said that parts of the site didn't work on the Wii browser, so I just wanted to point that out. – Kinopiko Oct 30 at 9:27

5 Answers

vote up 5 vote down check

You have following options

  • Chrome: Press Ctrl+Shift+J and it will give similar functionality. Also consider this info on JavaScript debugger in Chrome.
  • IE7: Nothing built in. But have a look at IE Developer Toolbar.
  • IE8: Just hit F12 and you will get access to some very capable built-in tools. Error console is on Script tab.
  • Firefox: Just use FireBug.
  • Opera: Look at Tools->Advanced->Error Console. Also read some info from developers of Opera.
  • Safari: Enable the Developer Menu from Safari's preferences. It will give access the various tools (Error Console, Web Inspector, JavaScript Profiler, etc). Of course there are also shortcuts, like Cmd + Alt + C for the console.
link|flag
IE8 has some very capable built-in tools. Just hit F12. – Svend Oct 30 at 8:36
I'll accept this answer for the time being. – Kinopiko Oct 30 at 10:08
vote up 1 vote down
  • Safari: Enable the Developer Menu from Safari's preferences, then use that menu to access the various tools (Error Console, Web Inspector, JavaScript Profiler, ...). Of course there are also shortcuts, like CMD + ALT + C for the console. :)
link|flag
vote up 1 vote down

In Opera it's under Tools->Advanced->Error Console. I find it very handy.

link|flag
Thanks for your answer. This is what I was looking for. – Kinopiko Oct 30 at 8:55
vote up 1 vote down

I use Ctrl+Shift+J in Chrome, and it's got something close in there. IE -- there's the IE Developer Toolbar, and I think IE8 has something like that, but let's face it, if you're using IE for Javascript debugging, you basically hate yourself and have more serious personal issues regarding your self-esteem to deal with.

link|flag
1  
Then again, you might have to debug JavaScript in IE because it doesn't work there but works elsewhere. – Kinopiko Oct 30 at 8:25
Very true. But where I work, there's an inexplicable desire to use IE for development. – Dave Markle Oct 30 at 10:49
vote up 0 vote down

If you use Firefox's error-console you should consider the Firebug plugin.

There is also Firebug Lite -- a bookmarklet that brings a scaled-down version of Firebug to other browsers.

link|flag
Thanks for the tip, but I am looking for an equivalent for the error console in other browsers. – Kinopiko Oct 30 at 8:25

Your Answer

Get an OpenID
or

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