Hi,
love your RTE

But have a problem.
Made a form with an form-field checker and after I added your RTE it doesnt work anymore. What can I do to make it work?
The form checker looks like this:
<body onLoad="initialiseWebWizRTE();">
<script Language="JavaScript">
<!--
function frm_Validator(theForm)
{
if (theForm.naam.value == "")
{
alert("Name");
theForm.naam.focus();
return (false);
}
if (theForm.titel.value == "")
{
alert("Title");
theForm.titel.focus();
return (false);
}
if (theForm.inhoud.value == "")
{
alert("Inhoud");
theForm.inhoud.focus();
return (false);
}
if (theForm.menu.value == "1")
{
if (theForm.menuvolgorde.value == "")
{
alert("Menu order");
theForm.menuvolgorde.focus();
return (false);
}
if (theForm.menutitel.value == "")
{
alert("Menu title");
theForm.menutitel.focus();
return (false);
}
}
return (true);
}
//--></script>
and the form:
<form method="POST" action="add.asp" onsubmit="return frm_Validator(this)" name"frm">
etc...
Best wishes,
Karel