Once loaded, the editor registers a global object called FCKeditorAPI. This object offers the entry point to interact with any editor instance placed in a page and i am receiving an error stating FCKeditorAPI is not defined so is there any method in javascript to check whether fckeditor is loaded or not
A:
In version 3 (ckeditor) there is instanceReady
CKEDITOR.on('instanceReady', function(ev) {
doWhateverWith(ev);
});
Which version are you using?
dove
2010-08-18 14:58:21
i am using 2.6.4 is there any thing for this version
Mac
2010-08-18 14:59:03