Re: XSLT Conversion not quite there
Martin Honnen <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.layout.xslt |
|---|---|
| Organization | Liberty Development |
| Message-ID | <[email protected]> |
[email protected] wrote: = > function getHtml () { > //create an xml document object > var xmldoc = document.implementation.createDocument("", "", null); > xmldoc.async = false; > //create an xsl document object > var xsldoc = document.implementation.createDocument("", "", null); If you want synchronous loading then you probably want xsldoc.async = false; here. -- Martin Honnen http://JavaScript.FAQTs.com/