views:

34

answers:

2

I really love the Chrome console because it autocompletes all the object methods for me.

But it only shows one at a time and I have to press TAB to step to the next one.

Is there a way to show a list of all the autocompletion object methods?

A: 

You could loop though and print them. Here's an example for window:

for(var i in window) if(window.hasOwnProperty(i)) console.log(i);
Nick Craver
+1  A: 
console.dir( someObject );
Šime Vidas