How to disable elements selection and resizing in contenteditable div?

I spent on this a lot of time myself, when trying to completely hide control selections (this is how they are called) in CKEditor‘s widgets. Unfortunately I don’t have a good news.

Solution 1

First of all, there’s a mscontrolselect event. When I found it (and the fact that its name has an ms prefix) I was very happy, because according to MS it should be preventable.

But it turned out that it’s totally unstable. Sometimes it is fired, sometimes it isn’t. It varies between IEs versions, DOM structure, attributes, which element you click, is it a block element, etc. The usual MS’s crap. But you can try:

function controlselectHandler(evt) {
    evt.preventDefault();
}
document.body.addEventListener('mscontrolselect', controlselectHandler);

However, this will completely block selection (if it worked). So you’ll make those elements unselectable at all.

Solution 2

Then there’s a second option, more reliable – moving selection somewhere else after such element was clicked. There are few ways this can be implemented. In CKEditor we’re fixing selection on mousedown… and mouseup because (again) sometimes it’s not enough for IE and it depends on dozen of conditions. You could also listen to selectionchange event and fix selection there.

However, again, we’re also talking about blocking selection of such element.

Solution 3

Therefore, the third option is to block not selection, but the resizestart event. CKEditor combines this with enableObjectResizing command: https://github.com/ckeditor/ckeditor-dev/blob/a81e759/plugins/wysiwygarea/plugin.js#L211-L218. This solution will prevent resizing, but of course will not hide those ugly borders.

Solution 4

As I mentioned, I worked on this problem in CKEditor. We managed to make it possible to have non-editable elements inside editable, but with completely controllable and unified behaviour between browsers. The complete solution is too complex to be explained on StackOverflow and it took us months to implement it. We called this feature widgets. See some demos here. As you can see there are no control selection when non-editable element is selected. The selection appears on a short moment only between mousedown and mouseup, but only in specific cases. Except for that everything works as it would be native (although it’s a completely fake thing).

Read more in the Introduction to Widgets and in the Widgets Tutorial.

Leave a Comment