Skip to content Skip to sidebar Skip to footer

Interactive Javascript Console (preferably Integrated With Firebug)

I'm looking for a way to have an interactive JIT debugger, preferably integrated with Firebug. I got the idea from PHPEd, which has an 'Immediate' debug tab where you can just type

Solution 1:

You can already do this in Firebug. Just get to a break point, then go to the "console" tab, and type your commands into the command line at the bottom (where there's the ">>>").

Solution 2:

If I understand the question correctly, I think can do that already in firebug.

  • Set a breakpoint (or use the debugger keyword)
  • Click the console tab
  • the bottom line allows you to enter a javascript command.
  • if you need more space click the icon that looks like an upside down v in the bottom right part of the browser.

You might also like the JS execute extension.

Solution 3:

Actually, Firebug can do this and it's only a matter of a little investigation on their website to find out how to do this best :) Good luck!

Post a Comment for "Interactive Javascript Console (preferably Integrated With Firebug)"