Hi!
Do you know why this work in IE 6 and not Firefox 1.07?
/Tooby
Code example:
----------------------------------------------------------
<html>
<body>
<script type="text/javascript">
// Load XML
var xml = new ActiveXObject("Microsoft.XMLDOM")
xml.async = false
xml.load("<path and name of file>.xml")
// Load XSL
var xsl = new ActiveXObject("Microsoft.XMLDOM")
xsl.async = false
xsl.load("<path and name of file>.xsl")
// Transform
document.write(xml.transformNode(xsl))
</script>
</body>
</html>
-----------------------------------------
Do you know why this work in IE 6 and not Firefox 1.07?
/Tooby
Code example:
----------------------------------------------------------
<html>
<body>
<script type="text/javascript">
// Load XML
var xml = new ActiveXObject("Microsoft.XMLDOM")
xml.async = false
xml.load("<path and name of file>.xml")
// Load XSL
var xsl = new ActiveXObject("Microsoft.XMLDOM")
xsl.async = false
xsl.load("<path and name of file>.xsl")
// Transform
document.write(xml.transformNode(xsl))
</script>
</body>
</html>
-----------------------------------------