Nylon Technology Presentation: Introduction To XSLT And XmlTransform() In ColdFusion

<!--- Match toes element. --->
<xsl:template match="//toes">
 
	<!--- Get all cute toe attributes. --->
	<xsl:apply-templates select="toe/@iscute" />
 
</xsl:template>
 
<!--- Match iscute Attribute node. --->
<xsl:template match="@iscute">
	A CUTIE!
</xsl:template>

For Cut-and-Paste