Hi all,
I am using CkEditor 3.4.2, can any one please help me to use CkEditor load complete event.
I want to replace the text area after CkEditor completely loaed, before that that textarea will remain invisible.
Thnaks in advance
Sourav
I am using CkEditor 3.4.2, can any one please help me to use CkEditor load complete event.
I want to replace the text area after CkEditor completely loaed, before that that textarea will remain invisible.
Thnaks in advance
Sourav

Re: What is CKeditor 3.4.2 load complete check event?
// create the editor var ckEditor = CKEDITOR.replace( ...etc ) // wait until the editor has done initializing ckEditor.on("instanceReady",function() { // insert code to run after editor is ready alert("ckEditor is ready"); });