Re: [xsl] XSL and js comments (for Google AdSense)

Subject: Re: [xsl] XSL and js comments (for Google AdSense)
From: Ronan Klyne <ronan.klyne@xxxxxxxxxxx>
Date: Wed, 21 Feb 2007 11:56:28 +0000
John Steel wrote:
> The pattern for Google js ads is
> 
> <script type="text/javascript"><!--
> google_ad_client = "pub-0000000000000000";
> ...
> google_ad_format = "468x60_as";
> //--></script>

<snip/>

> What have I missed please?
> 

You are feeding input XML to an XSLT engine. In XML, <!-- ... --> is a
comment, and the contents of your script tag are being read as such, and
discarded.
You could try the following:
<script type="....">
      <![CDATA[<!--]]>

// Your script code here

      <![CDATA[//-->]]>
</script>

	# r

-- 
Ronan Klyne
Business Collaborator Developer
Tel: +44 (0)870 163 2555
ronan.klyne@xxxxxxxxxxx
www.groupbc.com

Current Thread