Hi,
How can I use a XSL stylesheet for input 'blah' to output the HTML element iframe?
Thanks,
fifthcadence
How can I use a XSL stylesheet for input 'blah' to output the HTML element iframe?
Thanks,
fifthcadence
// xsl headers <xsl:template match="$content"> // $content = the element in your xml file that contains what you want to put in the iframe <iframe> <xsl:copy-of select="."/> </iframe> </xsl:template>
Comment