I have a strange problem in Internet Explorer with JavaScript. In every browser I did the test the JavaScript is enabled, but it seems to run only after I press the F12, running it in debug mode. And what is more confusing, after starting the IE debugger everything is working as suppose to.
Any ideas what it could be?
If you’re calling:
or any related method of console without having checked if
window.consoleexists, the script will fail silently. Opening the console leads towindow.consoleexisting, which allows the script to continue execution.Add
"window.console && "before your calls toconsole: