If you drag e.g. text/plain or text/html, your contenteditable element that you want to drop on places the caret/cursor at the position where you would drop the dragged content.
A very basic fiddle to show what I mean: example
<div contenteditable="true">DROP TEXT HERE</div>
This text wants to be dropped.
How can I emulate this behavior for custom datatypes? Or: How can I always put the caret next to the mouse-pointer while hovering?