Hey,
function ChttpConnector()
{
this.resObjekt = new ActiveXObject("Microsoft.XMLHTTP");this.getXml = function()
{
this.resObjekt.open('get', 'nr.xml');
this.resObjekt.onreadystatechange = this.handleResponse;
this.resObjekt.send();
}this.handleResponse = function()
{
if (this.resObjekt.readyState == 4)
{
return this.resObjekt.responseXML;
}
}
}
und wo genau liegt dein Problem?
Tschö