Skip to content Skip to sidebar Skip to footer

Ckeditor Initizialize And Destroy

I know there are similar question on stackoverflow or google, but nothing helps so far.. I use ckeditor with jquery adapter in leatest stable version. After clicking back and forwa

Solution 1:

I found that it crashes if it has not already been initialised before hand. However this works.

Destroy the instance. (assuming that you have a global called CKEDITOR.

if(CKEDITOR){
    if(CKEDITOR.instances.editor1){
        CKEDITOR.instances.editor1.destroy();
    }
}

Post a Comment for "Ckeditor Initizialize And Destroy"