The alert box will display nothing, and not return any data from any URL when it should be showing the google page! Any ideas? I'm using POST because I'm trying to get it to send querystring data as well.
$.ajax({
type: "POST",
url: "http://www.google.com",
success: function(msg) {
alert("Data Saved: " + msg);
}
});