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
//creating instance of ck-editor var yourInstance = CKEDITOR.instances.yourContainer; //check instance of your ck-editor if(yourInstance){ //destroy instance yourInstance .destroy(true); } // create instance again CKEDITOR.replace( 'yourContainer' );