Im trying to learn how to get data from json-data but I cannot figure out how to get the 'title' and 'url' when the json looks like this:
{
"about": "about",
"episodes": [
{
"id": 123,
"title": "the title",
"pod": {
"podtitle": "podtitle",
"url": "url"
}
},
{
"id": 1234,
"title": "the title2",
"pod": {
"podtitle": "podtitle2",
"url": "url2"
}
I am using $.getJSON(jsonURL, function(data) { ... but I am just getting the "top" keys.
How do I get the deeper stuff like 'url' and 'podtitle'?