I am new to xml and I am having difficulty finding information o how to creat a "Client/User" defines query using xpath or xslt for the internet. I can query on my own:
<xsl:for-each select="//CD[TITLE ='Rain']">
...
</xsl:for-each>
the problem is that this is in a seprate file (.xsl) and I am not sure how to query from an html file (for example, a <select>). Basically, the functionallity I need is that when the page loads, the user is presented with a Dropdown list with names - loaded from xml, and when the user selects one, that persons info appears onthe screen (on the same page). Thank you very much for your help.
<xsl:for-each select="//CD[TITLE ='Rain']">
...
</xsl:for-each>
the problem is that this is in a seprate file (.xsl) and I am not sure how to query from an html file (for example, a <select>). Basically, the functionallity I need is that when the page loads, the user is presented with a Dropdown list with names - loaded from xml, and when the user selects one, that persons info appears onthe screen (on the same page). Thank you very much for your help.