bouncingHippo
bouncingHippo

Reputation: 6040

Firebug debugger not working

In a JS file I plan to set up breakpoints that work programmatically, and for some reason Firebug is not triggering the breakpoint. Sometimes it works, and sometimes it doesn't. I tried triggering "Break on all errors", and that still doesnt work. It only seems to work when i trigger "Break on all errors" AND "debugger statement" together, but even then its onl 3/50 tries. My Firefox is 3.X.

Upvotes: 0

Views: 2167

Answers (1)

Kristian
Kristian

Reputation: 21800

if your debugger is not stopping at a particular breakpoint, then its probably safe to say that the code is failing before it gets to execute that particular JS.

Upvotes: 2

Related Questions