I get a JSON object from an AJAX call that I need to get all the "name" values from.
I have tried to iterate it in many different ways without success. I have managed to iterate JSON objects before but now the values are inside pkg which is inside data: and that is where i get trouble. code below does not work and I do not know how to get into pkg.
for (var key in jsonData) {
    if (jsonData.hasOwnProperty(key)) {
    }
    jQuery('#result').html(jsonData[key].join("<br/>"));
}
No success with (jsonData.pkg) or (jsonData.data.pkg) either.
Underneath is the value inside jsonData object.
{
    "data": {
        "pkg": [{
            "name": "ThisIsName1",
            "FRONTPAGE": "n",
            "IP": "n",
            "MAXSQL": "1",
            "MAXPOP": "unlimited"
        }, {
            "name": "ThisIsName2",
            "FRONTPAGE": "n",
            "IP": "n",
            "MAXSQL": "0",
            "MAXPOP": "unlimited"
        }, {
            "name": "ThisIsName3",
            "FRONTPAGE": "n",
            "IP": "n",
            "MAXSQL": "0",
            "MAXPOP": "unlimited"
        }]
    },
    "metadata": {
        "version": 1,
        "reason": "OK",
        "result": 1,
        "command": "listpkgs"
    }
}
I have searched the forum for answers but I have not found someone that has the values nested inside the object.
 
     
     
     
     
     
    