I am using jQuery 1.6.1 and IE9. I run the page on my machine, trying to request data from the server. My Javascript looks like this:
var baseURL = "http://1.1.1.1/cgi-bin/ipcxml.cgi?";
var path = "scm:scm/data/system_names";
var fullURL = baseURL + path;
$.ajax (
{
url: fullURL,
cache: true,
context: $("#" + element),
crossDomain: true,
dataType: "xml",
type: "GET",
success: function (data) {
alert (data);
}
}
);
When I run this code and watch the network traffic in the IE developer tools, I don’t see the request coming out. Anyone have any thoughts?
source
share