[Home] [By Thread] [By Date] [Recent Entries]
Robert G wrote:
var xsltProcessor=new XSLTProcessor(); Well Mozilla nicely allows you to produce HTML DOM nodes with an XSLT transformation that you can appendChild directly into your HTML document, simply by using var fragment = transformToFragment(xml, document); // might want/need to remove contents of output first output.appendChild(fragment); so use that instead of creating a result document first, then serializing that (as XML) with XMLSerializer, then parsing that (as HTML) by setting innerHTML. -- Martin Honnen http://msmvps.com/blogs/martin_honnen/
|

Cart



