Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IE runs javascript only after pressing F12

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?

like image 234
Constantin Avatar asked Sep 29 '11 19:09

Constantin


1 Answers

If you're calling:

console.log('...some text here...');

or any related method of console without having checked if window.console exists, the script will fail silently. Opening the console leads to window.console existing, which allows the script to continue execution.

Add "window.console && " before your calls to console:

window.console && console.log('works');
like image 173
zzzzBov Avatar answered Oct 11 '22 08:10

zzzzBov