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]
Other format: [Raw text]

javascript problem


My first post so please be gentle :) I looked all through the archives for an answer.

Can someone please tell me why this script will not execute:

<head>
<xsl:copy-of select="document('meta')/meta" />
<title><xsl:value-of select="page/@title"/></title>
<script language="JavaScript">
{
document.write("&lt;link rel='stylesheet' href='css.css' type='text/css' /&gt;");
}
</script>
</head>


But this one will (it's further down inside the body of the html output):

<script language="JavaScript">
{
document.write("&lt;hr width='10' /&gt;");
}
</script>


The first is a browser detect script whittled down to essentials. Can someone tell me the difference between the two? Is there a better way to do browser detection? I need to send different css to different browsers.

Thanks,
Paul

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]