I know this propably got answered very often but I still don't get it.
The only information I need is "up" and "down".
I got some JSON API Data and just want to get some specific data from it and just output it via alert()
.
What I got:
$.getJSON('URL', function(data) {
jsonData = data;
});
alert(data['items'][0]['up'][0]);
What the JSON looks like:
I tried to do this with the help of the mozilla wiki...