Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
2  
just as an aside : what do you need that for? To know if you can write to the firebug's console or what? – Andrei Rinea Oct 31 '10 at 20:12

6 Answers

up vote 84 down vote accepted

Original answer:

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

if (window.console && window.console.firebug) {
  //Firebug is enabled
}

Update (January 2012):

The Firebug developers have decided to remove window.console.firebug. You can still detect the presence of Firebug by duck typing like

if (window.console && (window.console.firebug || window.console.exception)) {
  //Firebug is enabled
}

or various other approaches like

if (document.getUserData('firebug-Token')) ...
if (console.log.toString().indexOf('apply') != -1) ...
if (typeof console.assert(1) == 'string') ...

but in general, there should be no need to actually do so.

share|improve this answer
8  
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 '09 at 12:12
2  
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 '09 at 12:09
4  
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 '09 at 13:03
1  
@Dreas - you are correct – alex Jul 20 '09 at 1:42
i've just implemented this and it is a really good idea to seperate developers from regular users on your site. for example, letting them know about an API you have available for them to use! – Luc Mar 1 '12 at 9:49
show 2 more comments

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

share|improve this answer

As of Firebug version 1.9.0, console.firebug is no longer defined because of privacy concerns; see release notes, bug report. This breaks the above mentioned methods. Indeed, it changes the answer to Allan's question to "there is no way"; if there is another way, it's considered a bug.

The solution instead is to check for the availability of console.log or whatever it is you want to use or replace.

Here is a suggestion for a replacement for the kind of code that David Brockman is presenting above, but one that doesn't remove any existing functions.

(function () {
    var names = ['log', 'debug', 'info', 'warn', 'error', 'assert', 'dir', 'dirxml', 
                'group', 'groupEnd', 'time', 'timeEnd', 'count', 'trace', 'profile', 'profileEnd'];

    if (window.console) {
        for (var i = 0; i < names.length; i++) {
            if (!window.console[names[i]]) {
                window.console[names[i]] = function() {};
            }
        }
    } else {
        window.console = {};
        for (var i = 0; i < names.length; i++) {
            window.console[names[i]] = function() {};
        }
    }
})();
share|improve this answer
I edited the original answer and added new, working detection methods – Pumbaa80 Jan 18 '12 at 13:24

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.

share|improve this answer

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);
}
share|improve this answer
2  
This is really bad style. For example, the Chrome developer console supports most (if not all) of these methods, but does not have console.firebug. Therefore, that code above disables perfectly working console methods in non-Firebug consoles, which sucks. – Scytale Jul 6 '11 at 13:03

Keep in mind in Chrome window.console also returns true or [Object console].

Furthermore, I would check whether Firebug is installed with

if (window.console.firebug !== undefined) // firebug is installed

Below is what I get in Safari and Chrome, no firebug installed.

if (window.console.firebug) // true
if (window.console.firebug == null) // true
if (window.console.firebug === null) // false

The Is-True and Is-Not Operators obviously do type coercion, which should be avoided in JavaScript.

share|improve this answer
2  
Actually, to check whether something is defined, you should use “if (typeof window.console.firebug !== 'undefined')". – Scytale Jul 6 '11 at 13:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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