e.g., does this exist: console.clear()?
|
1
|
|
|
|
|
|
works for me |
||
|
|
|
|
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. |
||
|
|
|
|
If you want to see all the available methods under console:
|
||
|
|
|
|
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. |
||
|
|
|
|
_FirebugCommandLine.clear(); Will clear the console |
||
|
|
|
|
The full list of console methods (including console.clear()) is available here: |
||
|
|
