Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using firebug and have some statements like:

console.log("...");

in my page. In IE8 (probably earlier versions too) I get script errors saying 'console' is undefined. I tried putting this at the top of my page:

<script type="text/javascript">
    if (!console) console = {log: function() {}};
</script>

still I get the errors. Any way to get rid of the errors?

share|improve this question
2  
Use typeof in your if, it will avoid undefined errors: if(typeof console === "undefined") { var console = { log: function (logMsg) { } }; } – Flak DiNenno Feb 4 at 23:19

13 Answers

up vote 160 down vote accepted

Try

if (!window.console) console = ...

An undefined variable cannot be referred directly. However, all global variables are attributes of the same name of the global context (window in case of browsers), and accessing an undefined attribute is fine.

share|improve this answer
Thank you that works. – user246114 Jul 24 '10 at 20:15
41  
Just to be clear to anyone else using this, place <script type="text/javascript"> if (!window.console) console = {log: function() {}}; </script> at the top of your page! Thanks Kenny. – killianmcc Jul 3 '12 at 15:41
4  
What about var console = console || { log: function() {} }; – lorddev Oct 31 '12 at 3:08
1  
@lorddev To use that shorthand you need to include window: var console = window.console || { log: function() {} }; – jleng Jan 22 at 21:51

Another alternative is the typeof operator:

if (typeof console == "undefined") {
    this.console = {log: function() {}};
}

Yet another alternative is to use a logging library, such as my own log4javascript.

share|improve this answer
It would be a good idea to change undeclared assignment into a proper declaration, though. – kangax Jul 24 '10 at 22:41
Do you mean using var? That would only confuse things here. Or do you mean assigning to window.console rather than console? – Tim Down Jul 24 '10 at 23:18
Using var. Why would it confuse things here? – kangax Jul 24 '10 at 23:22
2  
What a confusing discussion. +1 to orginal answer. If I could give +2 I would for providing a link to you own log4javascript. Thanks OP! – Jay Taylor Jul 3 '11 at 16:07
3  
@yckart: No. typeof is guaranteed to return a string and "undefined" is a string. When the two operands are of the same type, == and === are specified to perform exactly the same steps. Using typeof x == "undefined" is a rock-solid way to test whether x is undefined in any scope and any ECMAScript 3 compliant environment. – Tim Down Sep 7 '12 at 12:08
show 15 more comments

Paste the following at the top of your JavaScript (before using the console):

/**
 * Protect window.console method calls, e.g. console is not defined on IE
 * unless dev tools are open, and IE doesn't define console.debug
 */
(function() {
  if (!window.console) {
    window.console = {};
  }
  // union of Chrome, FF, IE, and Safari console methods
  var m = [
    "log", "info", "warn", "error", "debug", "trace", "dir", "group",
    "groupCollapsed", "groupEnd", "time", "timeEnd", "profile", "profileEnd",
    "dirxml", "assert", "count", "markTimeline", "timeStamp", "clear"
  ];
  // define undefined methods as noops to prevent errors
  for (var i = 0; i < m.length; i++) {
    if (!window.console[m[i]]) {
      window.console[m[i]] = function() {};
    }    
  } 
})();

The function closure wrapper is to scope the variables as to not define any variables. This guards against both undefined console and undefined console.debug (and other missing methods).

share|improve this answer
3  
Why has this answer so few upvotes? It is the most complete one of the ones posted here. – mavilein Apr 3 at 18:44
Because of date. Absolutely agree with correct working solutions. I think this topic need be moderated. Sorry for bad English. – woto Apr 7 at 0:42
Quite complete except that it will not try to redirect logging to the log function (if present) so all logs are lost – Christophe Roussy 9 hours ago

You can use console.log() if you have Developer Tools in IE8 opened and also you can use the Console textbox on script tab.

share|improve this answer
4  
This is not good if you forget to sweap the code of console. The error in IE8 will prevent your JS code from working – HerrSerker Aug 30 '12 at 9:26

In my scripts, I either use the shorthand:

window.console && console.log(...) // only log if the function exists

or, if it's not possible or feasible to edit every console.log line, I create a fake console:

// check to see if console exists. If not, create an empty object for it,
// then create and empty logging function which does nothing. 
//
// REMEMBER: put this before any other console.log calls
!window.console && (window.console = {} && window.console.log = function () {});
share|improve this answer
1  
Syntax error. Why not just if(!console) {console = {} ; console.log = function(){};} – Meekohi Feb 21 '12 at 23:33
1  
Or not just !window.console && (window.console = { log: function () { } }); – Maksim Vi. Oct 3 '12 at 22:42

In IE9, if console is not opened, this code:

alert(typeof console);

will show "object", but this code

alert(typeof console.log);

will throw TypeError exception, but not return undefined value;

So, guaranteed version of code will look similar to this:

try {
    if (window.console && window.console.log) {
        my_console_log = window.console.log;
    }
} catch (e) {
    my_console_log = function() {};
}
share|improve this answer
2  
Insightful answer. – Jagtesh Chadha Aug 23 '12 at 6:37
    // a simple
    if(console) {
        console.log("blah blah blah ...");
    }

    /*
     * use .error() to attach error handlers and whenever
     * an error occurs it will automatically logged to the console
     * by jquery if you are using one
     * whenever an error occurs, see bellow.
     */
    $('jQuery_selector').error(function(){
        // and your error handling code here
    });

For .error() reference visit http://api.jquery.com/error/

share|improve this answer
That throws an exception instead of printing to console - quite different – w00t Feb 13 '12 at 16:48

For debugging in IE, check out this log4javascript

share|improve this answer
This is great, especially as my IE8 console doesn't output anything. – Firsh May 20 at 13:12
1  
@Firsh Thanks for your comments. – user1671639 May 21 at 6:45
I was looking for the comment on another question here that said 'shameless self promotion' or I don't know - similar - someone who said he created this scipt, was it you? I already closed that tab. Anyway it's a really great tool and very useful for my project. – Firsh May 21 at 21:00
@Firsh I didn't created this script, I am a person like you benefited using tool. – user1671639 2 days ago
if (typeof console == "undefined") {
  this.console = {
    log: function() {},
    info: function() {},
    error: function() {},
    warn: function() {}
  };
}
share|improve this answer

I'm using fauxconsole; I modified the css a bit so that it looks nicer but works very well.

share|improve this answer

You can use the below to give an extra degree of insurance that you've got all bases covered. Using typeof first will avoid any undefined errors. Using === will also ensure that the name of the type is actually the string "undefined". Finally, you'll want to add a parameter to the function signature (I chose logMsg arbitrarily) to ensure consistency, since you do pass whatever you want printed to the console to the log function. This also keep you intellisense accurate and avoids any warnings/errors in your JS aware IDE.

if(!window.console || typeof console === "undefined") {
  var console = { log: function (logMsg) { } };
}
share|improve this answer

For IE8 or console support limited to console.log (no debug, trace, ...) you can do the following:

  • If console OR console.log undefined: Create dummy functions for console functions (trace, debug, log, ...)

    window.console = { debug : function() {}, ...};

  • Else if console.log is defined (IE8) AND console.debug (any other) is not defined: redirect all logging functions to console.log, this allows to keep those logs !

    window.console = { debug : window.console.log, ...};

Not sure about the assert support in various IE versions, but any suggestions are welcome. Also posted this answer here: Internet Explorer Console

share|improve this answer

You can use console.log(...) directly in Firefox but not in IEs. In IEs you have to use window.console.

share|improve this answer
8  
console.log and window.console.log refer to the same function in any browser which is even remotely conformant with ECMAscript. It is good practice to use the latter to avoid a local variable accidentally shadowing the global console object, but that has absolutely nothing to do with the choice of browser. console.log works fine in IE8, and AFAIK there is no logging capability at all in IE6/7. – Tgr Oct 26 '10 at 16:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.