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?
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? |
|||||
|
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.
|
Places you can view the console! Just to have them all in one answer. firefox (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 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:
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 |
|||||||
|
|
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:
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. |
|||||
|
|
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.
These show up with different logos for each command. You can also use For a complete reference go to http://getfirebug.com/logging and I suggest you read it. (Traces, groups, profiling, object inspection). Hope this helps! |
|||||
|
|
When you call |
|||
|
|
|
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 |
|||||
|
|
You use it to debug Javascript with either Firebug for Firefox, or Javascript console in WebKit browsers.
Will display the contents of the variable, even if it is a array or object. similar to |
|||||||
|
|
An example - suppose you want to know which line of code you were able to run your program (before it broke!), simply type in
|
||||
|
|
|
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.. |
|||
|
|