vote up 0 vote down star

can a Javascript debugger do "when this variable is read", break point there, like a C / C++ debugger?

I am calling some library function, and deep down, it is finally do something with that argument, and instead of manually finding where it is actually using that value, can i say, stop the code when the variable is accessed?

flag

25% accept rate

2 Answers

vote up 1 vote down

You can set breakpoints in Firebug.

link|flag
This doesn't really answer his question – grepsedawk Jun 4 at 4:41
You're right! The correct answer is, "yes". – OrbMan Jun 4 at 5:03
vote up 0 vote down

I'm not aware of any way to do what you're asking, but can you try passing a value which is likely to break the library code? Then you'll get an exception and that can be seen in any JS debugger.

link|flag

Your Answer

Get an OpenID
or

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