I am hanging with this problem: I am trying to get the JSON file from http://finance.google.com/finance/info?client=ig&q=NASDAQ:TSLA with this code:
$("document").ready(function () {
// Calling function
reLoad();
function reLoad() {
$.getJSON("http://finance.google.com/finance/info?client=ig&q=NASDAQ:TSLA", function(data) {
alert(data);
});
setTimeout(reLoad, 1000);
};
});
But this isn't working. Any ideas?