I'm requesting a json feed using the standard jquery getJson request. The json url is not hosted on my domain.
$.getJSON('myfeed.json?jsoncallback=?',
function(data){
console.log(data);
})
However using Firebug, I'm not seeing any data logged in the console. But I can see the json data has been loaded as is available when I look under the Net panel in Firebug.
Anyone know why this is?
Sample JSON
[{
"person": {
"name": "Bob",
}
},
{
"person": {
"name": "Dave",
}
},
{
"person": {
"name": "Jim",
}
}
}]