How To Add Javascript To An XSL Stylesheet Using <!CDATA[]]>
There are several methods of including Javascript inside an XSL stylesheet.
Using <!CDATA[]]> is one method.
- <!-- Start of Javascript -->
- <script language="JavaScript" type="text/javascript">
- <![CDATA[
- // Insert Your Javascript Here
- // End the CDATA with the following:
- ]]>
- </script>
- <!-- End of Javascript -->
|