Sorry if the title doesn't explain things well.
I have a situation where I am using DHTMLX AJAX component to display XSLT out to HTML. So the idea is this:
- There is a containing HTML page with a DIV which the xslt will be displayed into.
- The xslt file of course which is very simple.. just display a couple of XML elements
into
<p>tags. - The XML dynamically generated.
Now all works well, it renders the output perfectly on most of the later browsers, and the rendering etc isn't the problem...
What I want to do now is to use JQuery to do something simple like show/hide a
tag etc.. which has a unique id of course.
The way I am doing it is to add the JQuery include into the HTML containing page, and have some Javascript/JQuery in the HEAD section of that HTML page - i.e. like you would normally if just a plain old HTML page.
JQuery doesn't seem to "see" the <p id='test'> tag which is rendered from the XSLT? even though (to best of my knowledge) the XSLT is valid/formed well and displays perfectly ok?
Something silly I am obviously missing ... either conceptually or coding wise???
Thanks in advance, any help grateful!