function init() { var fso = new FileSystemObject(); var srcTree = new ActiveXObject("Msxml2.DOMDocument.4.0"); srcTree.async=false; srcTree.preserveWhiteSpace=true; // You can substitute other XML file names here. var elem = document.getElementById("filename"); srcTree.load(elem.value); var xsltTree= new ActiveXObject("Msxml2.DOMDocument.4.0"); xsltTree.async = false; // You can substitute other XSLT file names here. xsltTree.load("locale-cvt.xsl"); document.getElementById('res').value = srcTree.transformNode(xsltTree); }
Input locale filename:
Output