I\'m debugging my web application in Firefox, Chrome and Internet Explorer. With the latter I\'m using Developer Tools to debug my scripts.
The problem I\'m having i
Try this in the console script window:
for (var a in object) { console.log("object["+a+"]="+object[a]) }
For example,
for (var a in document.head){ console.log("document.head["+a+"]="+document.head[a]) }