Json Parsing Using Javascript For Phonegap Android Application
In my application I want to hit an URL and I use to get a return data in JSON format as follows: { 'Status': { 'itemlist': [{ 'image': 'http://XXXXXXXXXXXXX
first there are some syntax error in given JSON string.
you can try this way
var itemList = json.Status.itemlist;
for(var i=0;i<itemList.length;i++)
{
alert('Image:'+itemList[i].image
+'\nID:'+itemList[i].id
+'\nName:'+itemList[i].Name);
}
see the
Post a Comment for "Json Parsing Using Javascript For Phonegap Android Application"