CKEDITOR 4
$(document).ready(function(){
CKEDITOR.on('instanceCreated', function(e) {
e.editor.on('contentDom', function() {
e.editor.document.on('keyup', function(event) {
//want current ckeditor id
});
});
});
});
複数のckeditorがあり、すべて実行時に作成しています。イベント オブジェクトがある場合、ck エディターの ID と値を取得することは可能ですか。