How to determine if CKEditor is loaded?
How do I find out if CKEditor is loaded? I've looked through the API docs, but could only find the loaded event. I want to check if CKEditor is loaded, because if I load it a second time, my textareas disapears. The loaded event didn't work for me. instanceReady worked: CKEDitor_loaded = false; CKEDITOR.on('instanceReady', function(){ CKEditor_loaded = true; }); var waitCKEDITOR = setInterval(function() { if (window.CKEDITOR) { clearInterval(waitCKEDITOR); //CKEDITOR.replace(...); } }, 100/*milli*/); Pekka supports GoFundMonica I've looked through the API docs, but could only find the loaded