Hi,
I want to use two editor on my page but they must not get same style
I'm write this :
Problems : The two editors have the same style ?! (the second style :config2.js)
Why ?
Thanks for help
I want to use two editor on my page but they must not get same style
I'm write this :
<textarea id="editor1" name="editor1">VALEUR 1</textarea>
<textarea id="editor2" name="editor2">VALEUR 2</textarea>
<script type="text/javascript">
var editor1 = CKEDITOR.replace('editor1', {customConfig: '/form1/config1.js?' + new Date() });
var editor2 = CKEDITOR.replace('editor2', {customConfig: '/form2/config2.js?' + new Date() });
</script>Problems : The two editors have the same style ?! (the second style :config2.js)
Why ?
Thanks for help
