Hi,
Does anybody have a way to detect Firebug opening and closing.
I know you can do the following:
if (window.console && window.console.firebug) {
//Firebug is enabled
}
but this only detects the firebug console on page load. What I want to do is on a page where firebug is not open, detect the opening of the firebug console.
I've tried the following, but with no luck
setInterval(function(){
if(window.console && window.console.firebug){
...
else
...
}, 1000);
Any help greatly appreciated.
Matt