My Self Kunjesh Sukhadia. I want to know that firebug is installed or not in client firefox.
Reason:
Because i want that end user cannot see the source code of site.
- Code: Select all
if(window.console && window.console.firebug)
{
alert('Please first of all Disabled Or Uninstall firebug than after visit this site.');
}
else
{
alert('Firebug is disabled or Uninstall. Now you can visit the site.');
}
This code is just alert that the firebug is On or Off.


