I have a webpage that has many user-generated elements that need to be "cleaned" and I'd like the cleanup to be expressed as an XSLT transform because it suits the purpose quite well.
Is there a way to apply an XSLT transform to part of a webpage? (And does the source element have to be checked by something akin to tagsoup first, to make sure it's well-formed?)
All the examples I find are about fetching an XML file and an XSL file, via Ajax, and running one against the other, but not taking a subset of the DOM and running an XSLT on it. Can it be done?