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 s
The loaded event didn't work for me. instanceReady worked:
loaded
instanceReady
CKEDitor_loaded = false; CKEDITOR.on('instanceReady', function(){ CKEditor_loaded = true; });