Reputation: 17400
Is there any way to selectively disable specified javascript files on Firefox/Firebug? Perhaps using another add-on?
I'm facing drag/drop conflicts between several static javascript files and I want to disable them one by one until finding the conflicting one.
Upvotes: 2
Views: 1023
Reputation: 1073998
You're probably best off commenting them out in the source; by the time you could disable them via Firebug (if you even can), their inline code would already have been run and had its side-effects.
Upvotes: 1