Hi,
I've look into posts here and internet webpages about the possibility to control when the ckeditor object is loaded. I've found some things but don't work.
I'm using the ckeditor object version 4, on asp 3 webpages, with javascript. The object alone is working fine.
On my page, i've got a submit button to save the contain in db.
Trouble is, when my page open, i need to wait maybe 3 or 5 seconds between time when all objects are loaded and time the ckeditor display itself. So, the risk is than someone could close the page by save button before data was replaced in the ckeditor object.
I would like to disabled save button by default, until data are completly loaded and ckeditor visible. Is there any return function i could call to test it ?
Thanks for read and reply.

have you tried something like
have you tried something like this?
CKEDITOR.replace('textareaid', { 'on' : 'instanceReady' : function (event) { console.log('ready to go!'); } });
We use the instanceReady callback and never have a problem with the object not being ready to use. (3-5 seconds is a REALLY long time, by the way...)