Client Side Xslt With Javascript In Firefox
I am using client-side xslt to transform xml files into xhtml. There have been some hurdles but I have managed to get passed all of them except this. The problem is that when I ha
Solution 1:
1) Fixing your problem
Solving your issue is as simple as changing value of the @method attribute from "xml" to "html" on xsl:output element.
2) Explaining the difference
HTML DOM extends core XML DOM interfaces. So, for example, the collection "forms" is not present in the XMLDocument, but is in HTMLDocument
Post a Comment for "Client Side Xslt With Javascript In Firefox"