warriorment
New Member
I am using XSLT to transform xml file to html so it can be viewed in a browser.My XSL file basically defines a number of tables (populated from my XML file).My HTML file is like below:\[code\]<html><head><title>My Title</title> <script type="text/javascript"><!-- function applyXSLT() { // do transfrom resultdiv.innerHTML = transformResults; }//--> </script></head><body class="main" onLoad="applyXSLT()"><div id="resultdiv"></div></body></html>\[/code\]Everything is working at this point. Now I want to use jQuery to help with sorting on the tables. My question is how do I do that? Where do I put the jQuery stuff?Thanks in advance!