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
var waitCKEDITOR = setInterval(function() { if (window.CKEDITOR) { clearInterval(waitCKEDITOR); //CKEDITOR.replace(...); } }, 100/*milli*/);