I am trying to grab a webpage using the $.get() jQuery function, and so far have been unsuccessful.
I have the following function:
$.get("http://www.lavancier.com/brockCharts/actual-data.html", function(response) {
document.write(response);
});
That has a valid URL and inside that url is a json (just on a plain html page however). When I try to write the contents, nothing happens. Anyone know why?
Thanks!