What's the best way to determine if the user has the browser console (i.e. firebug, webkit inspector, Opera dragonfly) open?
(I.e. I'm not interested in merely detecting the presence of the console
object in script. I want to know when the user has actually opened the debugger panel. Ideally across the major browsers (IE/Safari/Chrome/Firefox... and even mobile browsers if possible)
It's not directly possible in Javascript for security reasons. You would need to create a browser plugin, which obviously is not a feasible solution if you want cross-browser support.
However, there is this tricky solution that this guy came up with for Chrome, although I can imagine that this is a long-term solution because it relies on the fact that code runs slower when the console is up: http://blog.guya.net/2014/06/20/how-to-know-when-chrome-console-is-open/