Via Firefox+Firebug one can write out to the console a jQuery object and the console will, in great detail, show you what that particular object is referring to in the DOM.
console.log($(mySelector))
In IE8, using the IE8 Developer Tools, I also have access to a console log, which will write out as above. However, just like doing an alert($myObject) all I get returned is a gneric object:
LOG: [object Object]
Is there a way to get IE to show me more detail other than 'this is an object'?