This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: PLEASE HELP: changing href attribute


> I would like to change the value (.html instead of .xml) of the href
> attribute in the following well-formed HTML:
> 	<xsl:template match="@href">
...
> 		href="<xsl:value-of select='$htmlUrl'/>"
> 	</xsl:template>

Change this to 

 	<xsl:template match="@href">
...
 		<xsl:attribute name="href"><xsl:value-of
select='$htmlUrl'/></xsl:attribute>
 	</xsl:template> 

Mike Kay


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]