Sam,
 
How about trying something like the following -
 
      for( var myVariable in window ) {
        document.write( myVariable + ' = ' + window[myVariable] + '<br>' );
      }
 
The above code outputs all properties/methods of the window object.
 
So, you could put in your object in place of "window" and inspect it?
 
Does this help?
 
Let me know.
 
Thanks,
Mandy.
_______________________________________________
Rails-spinoffs mailing list
[email protected]
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Reply via email to