Chrome sets cursor to text while dragging, why?

None of these solutions worked for me because it’s too much code.

I use a custom jQuery implementation to do the drag, and adding this line in the mousedown handler did the trick for me in Chrome.

e.originalEvent.preventDefault();

Leave a Comment