pt_BR
Eu estava com o mesmo problema que você. Tentei varias alternativas uma delas com o método "Droppable", the existing um plugin makes JQuery Droppable.
RU:
I had the same problem as you. I tried several alternatives one with the "Droppable" method, there is a jQuery Droppable plugin.
https://api.jqueryui.com/droppable/
$( ".Permissoes > div" ).droppable({ over: function(event, ui){ console.log('fn:over',event,ui); }, out: function(event, ui){ console.log('fn:out',event,ui); }, drop: function(event, ui){ console.log('fn:drop',event,ui); } );
source share