Re: [xsl] javascript hyperlink ?

Subject: Re: [xsl] javascript hyperlink ?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 28 Sep 2006 15:42:11 +0100
What exactly is your question though? 
XSLT knows nothing about javascript (or html) you are just generating a
tree of elements and attributes, the significance of an href attribute
and javascript code in it only occurs when (if) the result of the xslt
transform is processed by an html engine. 

> what the html should look like:
> <a href ="javascript:void(0)" onclick="jsFunction('parameter')">
> Call to javascript</a>

<xsl:template match="foo">
<a href ="javascript:void(0)" onclick="jsFunction('parameter')">
Call to javascript</a>
</xsl:template>

would generate your desired output for each foo element in the input,
but I suspect that isn't what you want as that seems too simple??

David

Current Thread