I'm writing a plug-in for CKEDITOR 3.4.1 and I need to bind the "paste" event...
all work fine in
- Firefox 3.6.10
- Chrome 6.0
- Safari 5.0.2
but the "paste" event is NEVER fired in
- Opera 10.62
- IE8
- IE7
The most popular browser (IE) do not work ... I'm becoming mad... damn Microsoft....
CKEDITOR.plugins.add('charcount', { init: function (editor) { ... addEventOnkey(editor); ... } }); function addEventOnkey(editor) { ... editor.on('contentDom', function () { editor.document.on('paste', function (event) { alert("paste"); }); }); ... });