I am using the following get getJSON
$.getJSON("js/production-data.json").done(function(response) {
console.log(response);
console.log('hello');
});
I can see in Firebug that the data is being retrieved, but there is no console.log for the response
which would be the entire data. I can't even see hello
either.