Questions
$.getJSON is asynchronous so you should do:
$.getJSON
$.getJSON("test.json", function(json) { console.log(json); // this will show the info it in firebug console });
~ Answered on 2011-09-08 10:30:40