I am building a sports site and need to acccess the json data that is accessible from http://www.nfl.com/liveupdate/game-center/2012020500/2012020500_gtd.json . On my page I am trying to get this data from an ajax. Here is my script below.
<div id="data"></div>
<script>
    $.ajax({
       url: 'http://www.nfl.com/liveupdate/game-center/2012020500/2012020500_gtd.json',
       dataType: 'json',
       success: function(data) {
          var items = [];
          $.each(data, function(key, value) {
            $('#data').html(value);
          });
        },
    });
</script>
When I do this i just get "261" on my page. I had assumed i would see all the values. A lot of this data is nested and everything I read was just saying to do something like the script I have above. There are tons of different keys and values and I'll be trying to get select ones in the future. I have tried var variable = data.home.score; but that just got blank results..
Here is an example of some of the data when indented.
"home":{  
     "score":{  
        "1":0,
        "2":10,
        "3":7,
        "4":0,
        "5":0,
        "T":17
     },
Am I going about getting this data completely wrong? Can anyone help me get on the right path? Any insight or link's to answers that may help me would be much appreciated.
 
     
    