What's a surefire way of detecting whether a user has Firebug enabled?
|
Original answer:Check for the
Update (January 2012):The Firebug developers have decided to remove
or various other approaches like
but in general, there should be no need to actually do so. |
|||||||||||||||||||
|
|
If firebug is enabled, window.console will not be undefined. console.firebug will return the version number. |
||||
|
|
|
As of Firebug version 1.9.0, The solution instead is to check for the availability of 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.
|
||||
|
|
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. |
|||
|
|
|
You can use something like this to prevent firebug calls in your code from causing errors if it's not installed.
|
|||||
|
|
Keep in mind in Chrome window.console also returns true or [ Furthermore, I would check whether Firebug is installed with
The Is-True and Is-Not Operators obviously do type coercion, which should be avoided in JavaScript. |
|||||
|