var ele = new CKEDITOR.dom.element('div');
ele.setSize('height', 20, false);
ele.setSize('width', 200, false);
ele.setStyles({
'position':'absolute',
'border':'1px solid blue',
'cursor':'pointer',
});
editor.insertElement(ele)
IE:
I want to insert 2 or more ele which can move ,
when I user editor.insertELement(ele), at first I success,
if i do it again it false,or I can't make sure two ele in zhe ckeditor
(poor English).....