I am developing an extension for IE11 and as part of it. I am using the xhr (GET) page on the google settings page. The code runs on the original page.
These are the details I'm going through -
var details = {
url: "https://security.google.com/settings/security/permissions?pli=1&hl=en&rt=j",
method: 'GET',
async: true,
contentType: 'text'
}
And then the bell -
kango.xhr.send(details, function(data) {
});
It works great on Firefox, Chrome, Safari, Chromium, and it has even worked on IE11 until today.
The answer I get is
{"response":"","status":"0","abort":{}}
Cache is not a problem.
Any ideas? Thank.
source
share