vote up 3 vote down star
2

Does anyone know how to print debug messages in the Google Chrome Javascript Console?

Please note that the Javascript Console is not the same as the Javascript Debugger, they have different syntaxes AFAIK, so the print command in Javascript Debugger will not work here. In the Javascript Console, print() will send the parameter to the printer.

There is a related question already on SO, but it does not solve my problem: http://stackoverflow.com/questions/45965/how-do-i-use-the-javascript-console-in-google-chrome

flag

2 Answers

vote up 9 vote down check

Executing following code from the browser address bar:

javascript: console.log(2);

successfully prints message to the "JavaScript Console" in Google Chrome.

link|flag
Thanks, that's exactly what I needed. – DrJokepu Oct 20 '08 at 13:17
vote up 0 vote down

Just a quick warning - if you want to test in IE without removing all console.log()'s, you'll need to use FireBug Lite (http://getfirebug.com/lite.html) or you'll get some not particularly friendly errors.

(or create your own console.log() which just returns false)

link|flag

Your Answer

Get an OpenID
or

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