I\'m trying to use console.log to put some logging into the javascript side of my program. I noticed, though, that unless the dev console is open in IE, JS basically stops worki
You can create a fake console:
console
if (typeof console === "undefined") console = { log: function() { } };