Show all object methods in a list in Chrome console?
console.dir( someObject );
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);
console.dir( someObject );
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);