Hi Adam and Eric,
Well, after apply the fix, we found the following issue:
When include the following script in HTML tab, when go to normal tab, we see the "The Time is ..." which is correct. But the problem is everytime we go back to HTML tab then back to normal tab again, there is one more "The Time is..." appended next to the last "The time is...". Where there should be only one "The time is..."
Here is an example of the html
<html>
<head>
<SCRIPT language=JavaScript>
var now=new Date();
document.write("The Time is "+now);
</SCRIPT>
</head>
<body>
<div id="1" contenteditable="false" unselectable="ON" isrequired="0"><strong>Body</strong></div>
<div><br />
test</div>
</body>
</html>
Problem 2: If we put the script with in <body> tab, it does not even rending.
<html>
<head>
</head>
<body>
<div id="1" contenteditable="false" unselectable="ON" isrequired="0"><strong>Body</strong></div>
<div><br />
test</div>
<SCRIPT language=JavaScript>
var now=new Date();
document.write("The Time is "+now);
</SCRIPT>
</body>
</html>
Any idea on how to fix the issue?
Thanks, Qian
Qian