Json Parsing Using Javascript For Phonegap Android Application September 29, 2023 Post a Comment 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://XXXXXXXXXXXXXSolution 1: first there are some syntax error in given JSON string.you can try this wayvar 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); } Copysee the DEMO Share Post a Comment for "Json Parsing Using Javascript For Phonegap Android Application"
Post a Comment for "Json Parsing Using Javascript For Phonegap Android Application"