when use javascript console in i.e -8 cross browser testing , bug fixing, , try view object in it's expanded form (like 1 comes in chrome dev console) - gives {...} - how make i.e 8 expand key value pairs when using developer console view object properties.
snapshot: https://www.imageupload.co.uk/image/z68s
back in day, have struggled ie's "[object object]" logs. used 1 of these approaches:
- switch debug mode (
scripttab >start debugging), add breakpoints , watch variables (watchtab on right) change - use
json.stringifyfull-text representation of objects. improved readability try:json.stringify(data, null, "\t")
lastly, have sympathies having develop ie 8 :)
Comments
Post a Comment