- Firefox 3.6.10
- Chrome 6.0
- Safari 5.0.2
NEVER
- Opera 10.62
- IE8
- IE7
CKEDITOR.plugins.add('charcount', {
init: function (editor) {
...
addEventOnkey(editor);
...
}
});
function addEventOnkey(editor) {
...
editor.on('contentDom', function () {
editor.document.on('paste', function (event) {
alert("paste");
});
});
...
});
