Hallo, Marco!
// Mozilla, Opera und Safari
if (!xmlHttp && typeof XMLHttpRequest != 'undefined')
{
xmlHttp = new XMLHttpRequest();
}
if (xmlHttp)
{
xmlHttp.open('GET', Dateiname, true);
xmlHttp.onreadystatechange = function ()
"onreadystatechange" gibts beim mozilla/firefox nicht,
da heist das ganz simpel "onload".
{
. » if (xmlHttp.readyState == 4)
. » {
Inhalt = xmlHttp.responseText;
. » }
};
xmlHttp.send(null);
}
return Inhalt;
}
die zeilen ". » " fallen beim mozilla weg.
freundl. Grüsse aus Berlin, Raik