JSFiddle - React, Tailwind, and code Playground
HTML
<div id="lol" contenteditable="true" style="border:1px solid silver;height:200px;width:100%"></div>
JavaScript
$(function(){
$('div').on('draggable droppable',function(){
document.getElementById('lol').addEventListener ("ondrop ", DumpInfo, false);
});
});
function DumpInfo(){
alert('okk');
}