I want to use jquery to read the html of a web page. I use the following
$.ajax({
url: page,
dataType: 'html'
});
where page is the address of the page.
This works fine if I want to read a page with the same domain as the calling page.
However if I want to read a page from a different domain, it returns blank.
Anyone know how i can read the html from a different domain?