I converted my whole site to XML/XSL and I would like to know all of the current issues with performing Client-side XSLT.
Here are the ones i already know of (from first-hand experience):
- Cross-domain XSL files (this is a security issue and not cross browser)
- disable-output-escaping (this does not work in FF... they consider it a security issue)
Also as for browser support this is all i know of:
- Opera 9+
- FF 1.0+
- SF 2.0 + (i may be wrong on this)
- Chrome
- IE 6.0 +
Any others would be helpful too :)
Edit:
As for the 2nd pitfall there is a decent workaround that lets you pass xhtml to your xsl. It works by actually converting and making sure your XHTML is valid XML and placing it into your XML as XML. Then in your XSL you copy the xml ;) and output it as XHTML.