Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
What is console.log?

I see this line in a lot of jquery scripts out there. I assume it's used for debug.

Where can I see this log?

share|improve this question
4  
See: stackoverflow.com/questions/4539253/… – Box9 Jan 20 '11 at 5:27

marked as duplicate by Quentin, Jeremy J Starcher, Jocelyn, Eitan T, martin clayton Sep 28 '12 at 22:02

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

8 Answers

up vote 47 down vote accepted

Places you can view the console! Just to have them all in one answer.

firefox

http://getfirebug.com/

(you can also now use firefox's built in developer tools Ctrl+Shift+J (Tools > Web Developer > Error Console), but firebug is much better; use firebug)

safari and chrome

Basically the same.

https://developers.google.com/chrome-developer-tools/docs/overview

https://developer.apple.com/technologies/safari/developer-tools.html

internet explorer

Don't forget you can use compatibility modes to debug ie7 and ie8 in ie9 or ie10

http://msdn.microsoft.com/en-us/library/ie/gg589507(v=vs.85).aspx

http://msdn.microsoft.com/en-us/library/dd565628(v=vs.85).aspx

If you must access the console in ie6 for ie7 use the firebug lite bookmarklet

http://getfirebug.com/firebuglite/ look for stable bookmarklet

http://en.wikipedia.org/wiki/Bookmarklet

opera

http://www.opera.com/dragonfly/

iOS

Works for all iPhones iPod touch and iPads

http://developer.apple.com/library/ios/ipad/#DOCUMENTATION/AppleApplications/Reference/SafariWebContent/DebuggingSafarioniPhoneContent/DebuggingSafarioniPhoneContent.html

Now with iOS6 you can view the console through safari in osx if you plug in your device. Or you can do so with the emulator, simply open a safari browser window and go to the "Develop" tab. There you will find options to get the safari inspector to communicate with your device.

windows phone, android

Both of these have no console built in and no bookmarklet ability. So we use http://jsconsole.com/ type :listen and it will give you a script tag to place in your HTML. From then on you can view your console inside the jsconsole website.

iOS and Android

You can also use http://html.adobe.com/edge/inspect/ to access web inspector tools and the console on any device using their convenient browser plugin.


Older browser problems

Lastly older browsers (thanks again Microsoft) will crash if you use console.log in your code and not have the developer tools open at the same time. Luckily its an easy fix. Simple use the below code snippet at the top of your code and good old IE should leave you alone:

 if(!window.console){ window.console = function(){}; } 

This checks to see if the console is present, and if not it sets it to a blank function. This way window.console is never truely undefined.

share|improve this answer
8  
Correct me if wrong, but I think there's no need of Firebug in Firefox to view the console, just click Ctrl+Shift+J (Tools > Web Developer > Error Console) – Dane411 Feb 9 at 16:54
@Dane411 this is true, but firebug is better and more commonly used. – Fresheyeball Mar 12 at 20:38

You can view any messages logged to the console if you use a tool such as Firebug to inspect your code. Let's say you do this:

console.log('Testing console');

When you access the console in Firebug (or whichever tool you decide to use to inspect your code), you will see whatever message you told the function to log. This is particularly useful when you want to see if a function is executing, or if a variable is being passed/assigned properly. It's actually rather valuable for figuring out just what went wrong with your code.

share|improve this answer
8  
Don't forget to define it first to avoid errors in IE: stackoverflow.com/a/7585409/318765 – mgutt Aug 15 '12 at 8:36

It will post a log message to the browser's javascript console, e.g. Firebug or Developer Tools (Chrome / Safari) and will show the line and file where it was executed from.

Moreover, when you output a jQuery Object it will include a reference to that element in the DOM, and clicking it will go to that in the Elements/HTML tab.

You can use various methods, but beware that for it to work in Firefox, you must have Firebug open, otherwise the whole page will crash. Whether what you're logging is a variable, array, object or DOM element, it will give you a full breakdown including the prototype for the object as well (always interesting to have a poke around). You can also include as many arguments as you want, and they will be replaced by spaces.

console.log(  myvar, "Logged!");
console.info( myvar, "Logged!");
console.warn( myvar, "Logged!");
console.debug(myvar, "Logged!");
console.error(myvar, "Logged!");

These show up with different logos for each command.

You can also use console.profile(profileName); to start profiling a function, script etc. And then end it with console.profileEnd(profileName); and it will show up in you Profiles tab in Chrome (don't know with FF).

For a complete reference go to http://getfirebug.com/logging and I suggest you read it. (Traces, groups, profiling, object inspection).

Hope this helps!

share|improve this answer
1  
+1 sure it helps ;) – Roko C. Buljan Mar 24 '12 at 16:50

console is exposed by various browsers (ie - in Chrome's developer tools, firebug etc).

When you call console.log it appends the message to that browser's implementation of console. In Chrome this outputs the menu to the develop tools window.

share|improve this answer

Beware: leaving calls to console in your production code will cause your site to break in Internet Explorer. Never keep it unwrapped. See: http://blog.patspam.com/2009/the-curse-of-consolelog

share|improve this answer
2  
Its not that console log will break if you are using a Windows machine, but it will break your site if you are using Internet Explorer. – Kris Hollenbeck Aug 14 '12 at 18:34

You use it to debug Javascript with either Firebug for Firefox, or Javascript console in WebKit browsers.

var variable;

console.log(variable);

Will display the contents of the variable, even if it is a array or object.

similar to print_r($var); for php

share|improve this answer
3  
A handy tip... I always include the following in a globally accessible javascript file: if (!window.console) { window.console = { log : function() {} }; } . This allows you to get away with forgetting to remove the occasional debug statement. – roufamatic Jan 20 '11 at 5:31
@roufamatic I don't know... adding code, to handle code that doesn't belongs, seems like a pretty terrible solution... especially when find/replace is so easy... – jondavidjohn Jan 9 '12 at 17:08

An example - suppose you want to know which line of code you were able to run your program (before it broke!), simply type in

console.log("You made it to line 26. But then something went very, very wrong.")
share|improve this answer

I really feel web programming easy when i start console.log for debugging.

var i; if i want to check value of i runtime..

console.log(i); you can check current value of i in firebug console tab. it is specially used for debugging..

share|improve this answer

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