Search code examples
ckeditor

CKEditor - preventing users from pasting images


I would like giving my users a limited editor, using the great CKEditor.

I was trying to prevent people from adding images, therefore I've blocked the "Source" view and disabled the "paste" button (leaving only the Paste as Text button).

However, it is still possible to paste images (copied from web page). Is there a way to prevent that as well ?

Thanks.


Solution

  • You can use the 'paste' event, that way you can remove anything that you don't like. And of course, you should also verify the content at the server before saving.