Hi,
RELEASE : 4.1
Sorry I don't find the serch box so maybe the question has been asked...
How can I put in the same page multiple ckeditors as :
<textarea name="editor1"></textarea>
<textarea name="editor2"></textarea>
<script type="text/javascript">
var editor1 = CKEDITOR.replace( 'editor1');
var editor2 = CKEDITOR.replace( 'editor2');
</script>
AND NOT :
<textarea name="editor1"></textarea>
<script type="text/javascript">
var editor1 = CKEDITOR.replace( 'editor1');
</script>
<textarea name="editor2"></textarea>
<script type="text/javascript">
var editor2 = CKEDITOR.replace( 'editor2');
</script>
In the first case, only the first ckeditor (editor1) works well...
Thanks in advance for helping me !
Robin