I am trying to remove the plus icon on a grabbing cursor on dragenter
.
I tried:
function dragStart(e) {
e.dataTransfer.effectAllowed = 'none';
}
function dragEnter(e) {
e.preventDefault();
e.dataTransfer.dropEffect = 'none';
}
which actually removes the icon but that would not allow me to drop the element.
Is there a way to remove the icon without restricting the element from being dropped?