hello
i want dinamically remove editor(s) from page use javascript,to remain only textaera and inputs without iframe
it possible ?
use API ... etc
thanks advance
i want dinamically remove editor(s) from page use javascript,to remain only textaera and inputs without iframe
it possible ?
use API ... etc
thanks advance
Re: How to remove editor from page ?
You should really read the docs, they contain lots of information: http://docs.fckeditor.net/ckeditor_api/ ... ml#destroy
Re: How to remove editor from page ?
alert(FCKeditorAPI.__Instances[i]);
FCKeditorAPI.__Instances[i].destroy();
}
this didn't work ((
ps. version 2.4
Re: How to remove editor from page ?
ckeditor 3 uses:
for (var instanceName in CKEDITOR.instances) {
}
Re: How to remove editor from page ?
fckeditor 2