How Can The Page Know I'm Analyzing It With Firebug
Look: ! Wow! How can the webpage know I'm using firebug? BTW I couldn't find out how to show the translucent add banner.
Solution 1:
You can do:
if(window.console && window.console.firebug)
{
alert("Firebug active!");
}
Solution 2:
This works not only from the Firebug console, but also from within the page:
if (document.getElementById('_firebugConsole'))
alert("fire!");
Post a Comment for "How Can The Page Know I'm Analyzing It With Firebug"