$.ajax({
crossDomain: true,
type: "GET",
url:"http://simplewebsite.com",
success: function(data) {
alert(data);
}
});
I simply access a site, but success returns empty data. where as it works fine using curl. Any ideas?