Home › Forums › JavaScript › Loop through JSON data help needed.. › Re: Loop through JSON data help needed..
June 21, 2013 at 9:35 am
#139740
Member
Did you parse the JSON data first? Try:
var jsonObject = JSON.parse(jsonData);
for (var i =0; i < jsonObject.renditions.length; i++) {
alert(jsonObject.renditions.url);
}