You can use document.addEventListener('selectstart', e => e.preventDefault()) to disabled selection during drag and drop. https://developer.mozilla.org/en-US/docs/Web/API/Node/selectstart_event
document.addEventListener('selectstart', e => e.preventDefault())
But it's not supported on iOS yet.