This is my XML:
var x="<page><item>1</item></page>";
My XML is stored in a JavaScript string.
I am trying to make some changes to this XML using XSL. I want to apply this XSL to this XML via JavaScript. So I have used JQuery:
$('#output').xslt({xmlURL: '??',xslUrl: 'Test.xsl'});
Here the xmlURL is an XML file, but the input is a string containing XML. So how do I apply this XSL to the XML string ?