Skip to main content
Added some context, etc.
Source Link
Peter Mortensen
  • 31.4k
  • 22
  • 110
  • 134

If you have FirebugFirebug, you can use console.dir(object or array)console.dir(object or array) to print a nice tree in the console log of any javascriptJavaScript scalar, array, or object. Try

Try: console.dir(clickEvents); or console.dir(window);

console.dir(clickEvents);

or

console.dir(window);

If you have Firebug, you can use console.dir(object or array) to print a nice tree in the console log of any javascript scalar, array, or object. Try: console.dir(clickEvents); or console.dir(window);

If you have Firebug, you can use console.dir(object or array) to print a nice tree in the console log of any JavaScript scalar, array, or object.

Try:

console.dir(clickEvents);

or

console.dir(window);
Post Undeleted by Michael Butler
Post Deleted by Michael Butler
Source Link
Michael Butler
  • 6.3k
  • 5
  • 42
  • 49

If you have Firebug, you can use console.dir(object or array) to print a nice tree in the console log of any javascript scalar, array, or object. Try: console.dir(clickEvents); or console.dir(window);