This works on Firefox and Chrome but not on IE9:
$.ajax({
async: false,
url: settings['server'],
type: "POST",
data: "u=" + window.location
+ "&h=" + encodeURIComponent(myhtml),
success: function (args) {
myhtml = evalt(args);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(errorThrown);
}
});
I have set the headers in PHP, tried out the "XDR"-patch and other research on the web...
Any ideas?
Thanks in advance!