Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it presently possible to programatically debug Javascript from within a browser window? I wish to be able to breakpoint/inspect Javascript from an in-browser window panel.

EDIT:

I should have been more specific: I'm loogking for an api to be used from within the page context, i.e. JS code in browser can add it's own breakpoints.

share|improve this question
2  
Have a look at getfirebug.com/firebuglite – Felix Kling Feb 1 '12 at 14:49
1  
Firebug extension for Firefox, Developer Tools built-in to Chrome & Safari, IE8+ developer console - press F12. – Michael Berkowski Feb 1 '12 at 14:49
did you try using firebug? – blejzz Feb 1 '12 at 14:49
2  
A google search for "browser javascript debugger" might be a good idea ... – Pointy Feb 1 '12 at 15:00
1  
Well, had you done that, crazy as it may seem, you'd have seen Firebug as one of the first results (if not the first). Had you then looked into Firebug, you could have read about its "console" API, that provides all sorts of ways to trace execution. That, combined with the native debugger; statement (which is as close to a "breakpoint" as I can imagine), is probably as good as you're going to get. – Pointy Feb 2 '12 at 13:32
show 5 more comments

7 Answers

It's already built-in in Chrome and Safari and, to an extent, in Firefox. There exists multiple plugins for this. Look at Firebug for Firefox, and F12 Developer Tools for IE.

share|improve this answer
6  
Built in to Opera as well (Dragonfly) – Magnus Hoff Feb 1 '12 at 14:52
very useful tool to work on JS that runs in chrome on firefox called chromebug, i love this tool saved me weeks of debugging. – Liran Feb 1 '12 at 15:31
I'm looking for an API that can be used from within the page context. – Thomas Feb 2 '12 at 1:43
@Thomas have you ever heard of the debugger; statement? – Pointy Feb 2 '12 at 2:25
@Pointy no i have not, however all that does is break to the builtin debugger, which is not what i want. – Thomas Feb 2 '12 at 4:26

If you're using Firefox, try FireBug.

If you're using Chrome, it has an in-built debugger.

For IE there's something called DebugBar and F12 Developer Tools.

share|improve this answer

Utilize your browser's developer tools: Use browser-specific developer tools, which allow you to identify runt-time errors, set up breakpoints, and run performance diagnostics. To make debugging much easier, don’t minify the JavaScript during development deployment.

In IE: IE Developer Tools

Or install the Google Chrome Frame which allows IE to process JavaScript with Google Chrome’s V8 engine and allows the user to debug with the Chrome Developer Tools

In FF: Firebug extension

In Chrome: Chrome Developer Tools

Use a static code checker, like JSLint, to verify that JavaScript code complies with generally accepted coding rules.

Use JsFiddle to easily test and improve JavaScript/jQuery functions (http://jsfiddle.net/) This has a JSLint option for parsing the JavaScript

share|improve this answer

just go for firebug.

http://getfirebug.com

you can also have breakpoints

http://getfirebug.com/doc/breakpoints/demo.html

share|improve this answer

In Google Chrome -> Right Click -> Inspect Element

or

Firebug for Firefox

share|improve this answer

F12 in almost any modern browser.

share|improve this answer

Yes there are possiblities to do that.

For Chrome for example you can use the the chrome.debugger extension to attach your own debugger-implementation to a website, that runs in another tab/window. Once you are attached, you control the debugger vie a JSON based remote debugging protocol. The biggest problem I would say is, that you have to pipe all your communication through an HTML-Element. This is the case because the extension can only communicate with a content script and the content script can only access DOM-specified attributes.

John Bartons chrome extension crx2app tries to simplify the access to the extension API. I don't know how much it actually supports, but it might also be helpful for developing a Debugger that runs from within the browser itself.

As far as I know Firefox also provides access to its internal JavaScript-Engine Spidermonkey and by extension to its debugging mechanism. But that might in fact collide with a FireBug plug-in, because you can usually only attach one listener to the Debugger. But with the recent release of the new Firefox built-in JavaScript-Debugger, which provides remote-access, this might be no longer a problem.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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