Hello,
I'm trying to use this script with my xsl but i get parse errors.
Quote:
<script type="text/javascript">
<!--
function radio_player() {
props=window.open('radioplayer.php?lang=&z=wmp&con fig=config', 'poppage', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=1, width=320, height=142 left = 100, top = 100');
}
// -->
</script>
|
Quote:
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
<xsl utput omit-xml-declaration="no" method="html" doctype-public="-//W3C//DTD XHTML 1.0 Strict encoding="UTF-8" />
<xsl:template match = "/myfolder" >
<html>
<head>
<title>welcome here</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
|
I added javascript inside <head></head> but i got the parse error becuase i had to remove <!-- before function as xsl content between it.
Thanks for your help