Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/04/2009, 14:06
Nicotico
 
Fecha de Ingreso: abril-2009
Mensajes: 1
Antigüedad: 15 años, 6 meses
Puntos: 0
Necesito ayuda para que funcione en IE

Buenas gente.. la idea es leer un xml/xsl... funciona perfecto en Firefox pero por más que intenté y busqué información no logro hacerlo funcionar en Internet Explorer. Les paso la parte del código que no logro hacer que funcione.

function getHtmlFragment(xmlUrl, xslUrl) {
if (window.XSLTProcessor){
var xslStylesheet;
var xsltProcessor = new XSLTProcessor();
//carga el archivo xml
var xmlSource = getResponseXml(xmlUrl).responseXML;
//carga el archivo xsl
xslStylesheet = getResponseXml(xslUrl).responseXML;
xsltProcessor.importStylesheet(xslStylesheet);
return xsltProcessor.transformToFragment(xmlSource, document);
}

//HASTA ACA SERÍA EL CODIGO QUE FUNCIONA BAJO FIREFOX

else if(window.ActiveXObject){

ACA IRIA EL CODIGO QUE FUNCIONARIA BAJO IE.. ALGUIEN SABE COMO HACERLO???

Muchas gracias por la ayuda...
Nicolás