How can I print a message to the error console, preferably including a variable? e.g., something like
print('x=%d', x);
|
1
|
How can I print a message to the error console, preferably including a variable? e.g., something like
|
|||
|
|
|
Install Firebug and then you can use |
||||||||
|
|
|
If you are using Firebug and need to support IE, Safari or Opera as well, Firebug Lite adds console.log() support to these browsers. |
||
|
|
|
|
The WebKit Web Inspector also supports FireBug's console API (just a minor addition to Dan's answer above) |
||
|
|
|
|
One good way to do this that works cross-browser is outlined in http://www.sitepoint.com/blogs/2008/08/22/debugging-javascript-throw-away-your-alerts/ |
||
|