We need to see what methods/fields an object has in Javascript.
|
As the others said, you can use Firebug, and that will sort you out no worries on Firefox. Chrome & Safari both have a built-in developer console which has an almost identical interface to Firebug's console, so your code should be portable across those browsers. For other browsers, there's Firebug Lite. If Firebug isn't an option for you, then try this simple script:
I'd recommend against alerting each individual property: some objects have a LOT of properties and you'll be there all day clicking "OK", "OK", "OK", "O... dammit that was the property I was looking for". |
|||||||||||||
|
|
If you are using firefox then the firebug plug-in console is an excellent way of examining objects
Alternatively you can loop through the properties (including methods) like this:
|
||||
|
A lot of modern browsers support the following syntax:
|
|||
|
It can't be stated enough that you can use console.debug(object) for this. This technique will save you literally hundreds of hours a year if you do this for a living :p |
|||
|
|
|
If you use Firebug, you can use console.log to output an object and get a hyperlinked, explorable item in the console. |
|||
|
|
|
console.dir (toward the bottom of the linked page) in either firebug or the google-chrome web-inspector will output an interactive listing of an object's properties. See also this Stack-O answer |
|||
|
|
|
A bit of improvement on nickf's function for those that don't know the type of the variable coming in:
|
|||
|
|
debugdiv): james.padolsey.com/javascript/prettyprint-for-javascript – Alex Vidal Jan 3 '11 at 19:05