I applied an xsl stylesheet for formatting presentation of xml document.
In this xsl stylesheet there is a javascript script but in Mozilla not
work. The xml page showed but the javascript step it isn't executed.
In explorer this xsl stylesheet work normally
I used mozilla 1.6 to 1.7rc3
Thanks for your help
This is a part of my example
---------------------------------------------------------------------------
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="offerte">
<html>
<head>
<title><xsl:value-of select="title"/></title>
<SCRIPT language="JavaScript1.1" src="createframes.js"></SCRIPT>
</head>
<body bgcolor="#c5d7e5">
<table border="1" width="100%" align="center">
<tr bgcolor="#0087be" >
-----------------------------------------------------------------------
|