I need to prettify some JSON to display within an HTML section.
The working javascript code I use is..
function transformJson(k,
Simply adding this after JSON.parse did the trick..
var newObj = {};
for(var attr in jsonObj){
if( jsonObj[attr].constructor != Object && attr != 'href'){
newObj[''+attr+''] = jsonObj[attr];
}else{
newObj[attr] = jsonObj[attr];
}
}
(And then clearly JSON.stringify applied to newObj)