I'm currently facing an issue with this specific problem: I am attempting to retrieve the JSON file from using the following code:
$("document").ready(function () {
// Triggering function
reLoad();
function reLoad() {
$.getJSON("http://finance.google.com/finance/info?client=ig&q=NASDAQ:TSLA", function(data) {
alert(data);
});
setTimeout(reLoad, 1000);
};
});
Unfortunately, the code doesn't seem to be working as expected. Any thoughts on how to resolve this issue?