Hi all,
I have added an editor to my page as follow
and I get this exception on IE6,7, and 8
Line 7
throw '[CKEDITOR.editor.replace] The element with id or name "'+b+'" was not found.
If I delete the code
I have added an editor to my page as follow
<textarea class="ckeditor" cols="80" rows="10" id="editor1" name="editor1" runat="server">
</textarea>
<script type="text/javascript">
CKEDITOR.replace('editor1',
{
toolbar: 'MyToolbar'
});
</script>
and I get this exception on IE6,7, and 8
Line 7
throw '[CKEDITOR.editor.replace] The element with id or name "'+b+'" was not found.
If I delete the code
<script type="text/javascript">
CKEDITOR.replace('editor1',
{
toolbar: 'MyToolbar'
});
</script>
then the exception is gone
Is this becuase I create an edito via CSS and then I call the .replace method ?
