Hallo ich bräuchte diese Funktion für den Mozilla Browser und bekomme es nicht hin, kann mir jemand helfen?
function los()
{
var positionsnummer = 1;
if (window.ActiveXObject) {
objectXSLTProcessor = objectXSLCache.createProcessor();
objectXSLTProcessor.input = objectXML;
objectXSLTProcessor.addParameter("positionsnummer", positionsnummer, "");
objectXSLTProcessor.transform();
// Transform
var htmloutput = objectXSLTProcessor.output;
document.open();
document.write(htmloutput);
document.close();
}
danke Martin