Is there a simple way to implement drag and drop for Safari or is not supported?
I've been only able to listen for events when the element is dropped to the target textarea. The main problem is I am not able to detect the exact position where the draggable text was dropped, and just works by appending it at the end of the textarea.
From this answer I managed to add the text:
Allow drag text and drop it in html input field without clearing previous data (only works on Safari)
The drag and drop is done natively somehow on Chrome and Firefox (this last one requires the entire text is selected and set to draggable). I'd like to know if there is a trick for web-kit so it just works like the Firefox trick.