Hai all..
ActiveXObject(" MSXML2.DOMDocum ent.3.0"); is not supported in mozilla. is there is any alternative solution to resolve this?
My code
It works well in IE.
Thanx in advance.
-Nirmal Singh B
ActiveXObject(" MSXML2.DOMDocum ent.3.0"); is not supported in mozilla. is there is any alternative solution to resolve this?
My code
Code:
function openEditor() { try { var xmlDoc = new ActiveXObject("MSXML2.DOMDocument.3.0"); var xslDoc = new ActiveXObject("MSXML2.DOMDocument.3.0"); xmlDoc.async = false; xmlDoc.validateOnParse = false; xmlDoc.resolveExternals = false; xmlDoc.load("../App_XMLFile/quotation_print.xml"); xslDoc.async = false; xslDoc.validateOnParse = false; xslDoc.resolveExternals = false; xslDoc.load("../XSLT/quotation_print.xsl"); initRTE(xmlDoc.transformNode(xslDoc), 'example.css'); } catch(e) { alert(e.message); } }
Thanx in advance.
-Nirmal Singh B
Comment