I can\'t seem to destroy instances of CKEdit per the documentation.
Consider the following:
&l
Simple solution
CKEDITOR.instances['textareaId'].destory()
You must use hEd.destroy (editor.destroy()).
CKEDITOR.remove() is for internal use as stated in the API.
You must use:
<textarea name="tx1" id="tx1" rows="15" cols="106"></textarea>
CKEDITOR.instances['tx1'] = false;