How can I inspect an Object in an alert box? Normally alerting an Object just throws the nodename:
alert(document);
But I want to get the p
Use console.dir(object) and the Firebug plugin
console.dir(object)