tags:

views:

22

answers:

1

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
i am using 2.6.4 is there any thing for this version
Mac

related questions