Hi All,
Does someone ever tried to load ckeditor on the fly with jquery.getScript or equivalent method ?
Looks like ckeditor is well loaded but not working well. For example, the replace method will hide the selected element but will not be able to create a new editor instead.
I suspect some initiation issues. Does anyone know if there is some document.onload event fired by ckeditor ?
I would accept any idea about this issue for this is quite important to me.
Thanks
Does someone ever tried to load ckeditor on the fly with jquery.getScript or equivalent method ?
Looks like ckeditor is well loaded but not working well. For example, the replace method will hide the selected element but will not be able to create a new editor instead.
I suspect some initiation issues. Does anyone know if there is some document.onload event fired by ckeditor ?
I would accept any idea about this issue for this is quite important to me.
Thanks

Re: Ckeditor + jQuery.getScript
window.CKEDITOR_BASEPATH = '/your_path_to_ckeditor/'; $.getScript('/your_path_to_ckeditor/ckeditor.js',function(){ /* your code here */ });Re: Ckeditor + jQuery.getScript