I have 2 ckeditors in the same container (a div) like below (textarea will be replaced by my js code with ckeditor):
<div id="container">
<textarea id="cke0"></textarea>
<textarea id="cke1"></textarea>
</div>
It's works great, but I have an issue when I let the container div be sortable (with jquery ui sortable) like :
$("#container").sortable();
I lost the content of the editor and the editor is no more editable and accessible. I can't focus the editor. I check in the debugger and the editor (the iframe) is still present in the DOM.
Anyone had this issue ?
thanks for replies Bastien