to get the editor try this...
var editorId = objWrapper.find(".cke").get(0).id.replace("cke_", "");
var editor = CKEDITOR.instances[editorId];
editor.insertHtml(value);
editor.getData();
the Api documentation is always helpful
http://docs.ckeditor.com/
var editorId = objWrapper.find(".cke").get(0).id.replace("cke_", "");
var editor = CKEDITOR.instances[editorId];
editor.insertHtml(value);
editor.getData();
the Api documentation is always helpful
http://docs.ckeditor.com/