JavaScript console.log creates error in IE

Created on 17 November 2015, over 9 years ago
Updated 23 January 2025, 2 months ago

JavaScript's console.log creates an error in IE if Developer Tools is NOT open.

http://kevinquillen.com/ie/2014/06/11/ie-console-woes/

From site above:
"
How can I tell?

A simple test to see if console is the issue in your sites Javascript is to add this just before your body tag, or, after all your sites Javascript files have loaded:

if(!window.console) {
  var console = {
    log : function(){},
    warn : function(){},
    error : function(){},
    time : function(){},
    timeEnd : function(){}
  }
}

Reload that in IE. If your script(s) start magically working - your issue is definitely console methods being used. Don’t leave this in though, it certainly is not a fix by any means. It simply defines an object if it is not yet defined.

The simple fix is commenting it out when you’re through using it. Often times, we get so gung-ho about debugging our code that sometimes you cannot see the forest for the trees. This is one of those instances. The minute you try to debug this, you won’t get very far, as the very tool you likely use to debug scripts is the thing causing the issue!"

An alternative solution is to prepend the console calls with a check for console like:

window.console&&window.console.log(selectedButton);
source: http://stackoverflow.com/questions/3326650/console-is-undefined-error-for-internet-explorer/16916941#16916941

🐛 Bug report
Status

Closed: outdated

Version

2.0

Component

Code

Created by

🇨🇦Canada slatty

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024