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 pres the F12, runn
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');