I have a good working local script:
$.getJSON("jsonfile.js",function(item) {
$.each(item.terra_nova_feed, function(i,item) {
// functions and varibles//
});
});
Which works fine local. When the JSON file moves to another domain.. nothing. I know I should be using getScript to pull in the JSON file. However how do I pull that data into the existing script?