xsl-list
[Top] [All Lists]

Re: [xsl] javascript hyperlink ?

2006-09-28 07:42:26

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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--