function HTTPReq(){} HTTPReq.prototype.get = function(sURL, cbFunc){ var reqObject = new XMLHttpRequest(); alert(reqObject); reqObject.open("get", sURL, true); reqObject.onreadystatechange = function(){ if (reqObject.readyState == 4) cbFunc(reqObject.responseText); } reqObject.send(null); }
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