vote up 1 vote down star
1

e.g., does this exist: console.clear()?

flag

64% accept rate

6 Answers

vote up 2 vote down check

console.clear();

works for me

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

If you want to see all the available methods under console:

for(var i in console) {
    console.log(i);
}
link|flag
vote up 0 vote down

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.

http://getfirebug.com/console.html

http://getfirebug.com/commandline.html

link|flag
vote up 1 vote down

_FirebugCommandLine.clear();

Will clear the console

link|flag
vote up 0 vote down

The full list of console methods (including console.clear()) is available here:

http://getfirebug.com/console.html

link|flag

Your Answer

Get an OpenID
or

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