Hello,
This my script works fine with Firefox, but not with IE. How to change it that it would be ok for all browsers, starting IE6?
function loadurl(url) {
var rqo = new XMLHttpRequest();
rqo.open('GET', url, false);
rqo.send(null);
return rqo.responseText;
}