e.g., does this exist: console.clear()?
+1
A:
You can type clear(); in the Firebug command line. I don't think there's a way to do it from a web page though.
Patrick McElhaney
2008-10-01 16:14:48
+2
A:
If you want to see all the available methods under console:
for(var i in console) {
console.log(i);
}
J-P
2008-10-01 16:19:05
A:
I have to agree with Patrick on that one. There is a clear() function that you can use in the console itself, but there doesn't appear to be a way to call it from a script.
TehOne
2008-10-01 16:21:31
Doesn't work in Google Chrome though.
doekman
2010-07-01 11:40:11
A:
The full list of console methods (including console.clear()) is available here:
Jesse Merriman
2009-07-02 19:53:56
+1
A:
console.clear() is part of the Firebug API. I fixed the documentation page: http://getfirebug.com/wiki/index.php/Console_API#console.clear.28.29
jjb
johnjbarton
2010-09-22 15:30:41