Dustin Getz
Dustin Getz

Reputation: 21811

break-on-modify in firebug?

I'm having trouble tracking down a bug which is causing a button to get disabled.

Is there a way to have firebug break if the button state is touched in javascript?

Upvotes: 0

Views: 174

Answers (2)

johnjbarton
johnjbarton

Reputation: 1857

Yes you can break on attribute change http://getfirebug.com/doc/breakpoints/demo.html

Upvotes: 0

Grzegorz Oledzki
Grzegorz Oledzki

Reputation: 24301

I am not really sure. Maybe registering some JavaScript code to the onChange event of this button and having a breakpoint there?

Upvotes: 1

Related Questions