I have a very basic AJAX function in JQuery:
$.ajax({
url: "http://www.google.com",
dataType: "html",
success: function(data) {
alert(data);
}
});
But the data is always an empty string, no matter what url I go to… Why is that? I am running this locally at http://localhost:3000, and am using JQuery 1.4.2.
If I make a local response, however, like this:
$.ajax({
url: "http://localhost:3000/test",
dataType: "html",
success: function(data) {
alert(data);
}
});
…it returns the html page at that address. What am I missing here?
You can’t load data from other domains. It’s a security feature.
Here’s a link that talks about how to create a proxy from your web server to get around his limitation.
http://jquery-howto.blogspot.com/2009/04/cross-domain-ajax-querying-with-jquery.html