What's a surefire way of detecting whether a user has Firebug enabled?
|
6
|
|
|
|
|
|
Check for the
|
||||||||
|
|
|
You can use something like this to prevent firebug calls in your code from causing errors if it's not installed.
|
||
|
|
|
|
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. |
||
|
|
|
|
If firebug is enabled, window.console will not be undefined. console.firebug will return the version number. |
|||
|
|
