Monday, 6 June 2011

Detect firebug using Javascript


To detect the firebug is enabled in a browser, use the below line
if (window.console && window.console.firebug) {
  //Firebug is enabled
}
Reference:
http://stackoverflow.com/questions/398111/javascript-that-detects-firebug

No comments:

Post a Comment