1. function HTTPReq(){}
  2. HTTPReq.prototype.get = function(sURL, cbFunc){
  3. var reqObject = new XMLHttpRequest();
  4. alert(reqObject);
  5. reqObject.open("get", sURL, true);
  6. reqObject.onreadystatechange = function(){
  7. if (reqObject.readyState == 4)
  8. cbFunc(reqObject.responseText);
  9. }
  10. reqObject.send(null);
  11. }


i opera zwraca mi blad ze
MSXML is not installed on your system.

i troche sie dziwie, bo nigdy nie mialem problemu z opera i XMLHttpRequest.

moze komus sie nasunie jakies rozwiaanie. pozdrawiam