ckedito .
editor.id ckeditor, , ,
, .id "cke_12" , "cke_12_top".
, iframe.
CKEDITOR.replace(divId, {toolbar: [
{ name: 'clipboard', items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo']},
{name: 'editing', items: ['Format', 'Font', 'FontSize', 'TextColor', 'BGColor' , 'Bold', 'Italic', 'Underline', 'Strike', '-', 'RemoveFormat'] }
]});
for (instance in CKEDITOR.instances) {
var editor = CKEDITOR.instances[instance];
if (editor) {
editor.on('focus', function (event) {
showToolBarDiv(event);
});
editor.on('blur', function (event) {
hideToolBarDiv(event);
});
function showToolBarDiv(event) {
$('#'+event.editor.id+'_top').show();
}
function hideToolBarDiv(event) {
$('#'+event.editor.id+'_top').hide()
}
}
}