vote up 26 vote down star
6

What's a surefire way of detecting whether a user has Firebug enabled?

flag

75% accept rate

4 Answers

vote up 38 vote down check

Check for the console object (created only with Firebug), like such:

if (window.console && window.console.firebug) {
  //Firebug is enabled
}
link|flag
Remember, use your powers for good, or awesome, but don't penalize firebug users because it makes it so easy to circumnavigate any sort of 'copy' or 'save' actions they might be interested in taking. That'd be bad form. – matt lohkamp Jan 8 at 12:12
IIRC, using console.log in Safari with developer mode on also works - so the statement 'created only with firebug' may be incorrect. – alex Jul 19 at 12:09
Safari indeed has a console object, but Safari's console does not have a firebug property, and thus the above condition will fail in Safari, thus not detecting Firebug – Andreas Grech Jul 19 at 13:03
@Dreas - you are correct – alex Jul 20 at 1:42
vote up 1 vote down

You can use something like this to prevent firebug calls in your code from causing errors if it's not installed.

if (!window.console || !console.firebug) {
    (function (m, i) {
        window.console = {};
        while (i--) {
            window.console[m[i]] = function () {};
        }
    })('log debug info warn error assert dir dirxml trace group groupEnd time timeEnd profile profileEnd count'.split(' '), 16);
}
link|flag
vote up 3 vote down

It may be impossible to detect.

Firebug has multiple tabs, which may be disabled separately, and, are now not enabled by default.

GMail as it is can only tell whether or not I have the "console" tab enabled. Probing further than this would likely require security circumvention, and you don't want to go there.

link|flag
vote up 18 vote down

If firebug is enabled, window.console will not be undefined. console.firebug will return the version number.

link|flag

Your Answer

Get an OpenID
or

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