/ Published in: JavaScript
this is my way of working out the contents of an object when I don't have access to a debugger like firebug
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for (key in object) { alert ("object["+key +"] = "+object[key]); }