We are currently using rhythmyx 6.5.2 and we have a problem with inline javascript.
For example when we insert this line of code in ephox
<script type=“text/javascript”>/<![CDATA[/
function matchwo(a,b)
{
if (a < b && a < 0) then
{
return 1;
}
else
{
return 0;
}
}
/]]>/</script>
<p><input type=“button” value=“Click me!” onclick=“matchwo(2,3);” /></p>
the javascript code is still parsed, therefore this is what we get
from the browser
<div id=‘generic_body’><script type=“text/javascript”>//
function matchwo(a,b)
{
if (a < b && a < 0) then
{
return 1;
}
else
{
return 0;
}
}
//</script>
can you advise a work around? or maybe there is a patch out there that fix this issue with 6.5.2 as a patch was made for 6.1
thank you