I have this json file. It's actually a steam inventory.
I want to parse this in Javascript or JQuery.
I tried this:
var jsonSteam = JSON.parse(jsonStringhere);
alert("ICON " + jsonSteam.rgDescriptions);
This alerts me "Icon [object,OBJECT]" how can loop trough all the descriptions and get the icon_url
?
I tried to get a single element using alert("ICON " + jsonSteam.rgDescriptions[0].icon_url);
but this doesn't work.