I\'m used to debugging JavaScript in Chrome or Firefox just because their built in developer tools are a lot cleaner than IE\'s. IE8 came along way with the Developer Tools bein
Use:
console.dir(obj);
This will will give you all properties of the object also in IE.