I've encountered a difference between CKEditor 3 and CKEditor 4. In CKEditor 3, when I call the method CKEDITOR.replace('#textAreaId')
, it wraps the editor in an iframe. However, in CKEditor 4, when I call the same method (not inline), the iframe is lost. Is there a way to force CKEDITOR to render in an iframe? Thank you.
Update 1
After further testing, I found that using CKEDITOR.replace('textAreaId')
displays the editor, but without the iframe wrapping.