Re: [xsl] embedding xsl within javascript

Subject: Re: [xsl] embedding xsl within javascript
From: Phil Endecott <spam_from_xslt_list@xxxxxxxxxxxx>
Date: Thu, 29 Jul 2004 15:30:49 +0100
within my xsl I have the following basic rollover functionality

----
<a href="about.asp?page=1"
onmouseover="MM_swapImage('a1','','/images/about/about1_on.gif',1)"
onmouseout="MM_swapImgRestore()"><img src="/images/about/about1.gif"
border="0" name="a1"/></a>
----

I want to add a parameter to the image path, which is straightforward if its
just around the <img> tag:

----
<xsl:attribute name="src"><xsl:value-of
select="$ImgDir"/>about/about1_on.gif</xsl:attribute></img>
----

Or you could use the even simpler form using {}:


<img src="{$ImgDir}about/about1_on.png" alt="..."/>

but what within javascript statements? like in the mouseover state above?
how do I add the $ImgDir into the image path?

Just the same:


<a href="about.asp?page=1"
   onmouseover="MM_swapImage('a1','','{$ImgDir}about/about1_on.gif',1)"
   onmouseout="MM_swapImgRestore()">
  <img src="{$ImgDir}about/about1.gif"
       style="border:0" id="a1"/>
</a>


--Phil.


Current Thread