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: IE 5 XSL Processor Help


Excuse me, let me escape that for you.

Kevin Nardi
Upcast, Inc.

----------------------------------------------

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
	<title>XML Test</title>

<script>

function transform()
{
	alert(xml.transformNode(xsl.XMLDocument));
}

</script>

</head>

<body onload="transform()">

<XML id="xml">
	<hello>Hello World!</hello>
</XML>

<XML id="xsl">
	<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
xmlns="http://www.w3.org/TR/xhtml1/strict">

		<xsl:template match="hello">
			<xsl:value-of select="/" />
		</xsl:template>

	</xsl:stylesheet>
</XML>


</body>
</html>
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com


 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]