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 ?
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