I am facing an issue with a draggable div. When I drag the div
, the shadow also moves along with it. I want to find a way to hide this shadow while dragging.
<div draggable="true"
(dragstart)="mousedown($event)"
(drag)="dragging($event)"
(dragover)="allowDrop($event)">
div contents
</div>
Please provide assistance on how to solve this problem!