The results are weird: for example, whatever is produced with the XSL transformation behaves like a HTML DOM object, but if you create a new element, it lacks HTML-specific DOM calls.
And the obvious solution: make sure you're always including ...
<xsl:output method="html" encoding="utf-8"... in your XSL stylesheet.
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
1 comment:
Thanks! This really helped me out.
Post a Comment