Topic: Using Jquery to TinyMce and insert element at the mouse position
$(element).draggable({
iframeFix: true,
helper: "clone",
cursor: "text",
snap: true,
snapMode: "both",
stop: function (event, ui) {
var pos = {
left: event.pageX,
top: event.pageY
};
if (isInDropZone(pos)) {
$(this).dblclick();
}
}
});
I'm using jquery drag UI to drag some list content to tinymce, when i am dragging the caret not change and the content always insert at the current caret.
Does TinyMce support this ?
Thanks !