Change dragging cursor

css

Solution

Not sure if it truly solves your problem, but this ( http://jsfiddle.net/garretruh/pJjd4/ ) seems get rid of the text-select cursor by not making text selectable at all. Then again, you might want users to be able to select your text.

Problem

How to change cursor when dragging using only CSS? ``` div:active{ cursor:move; } ``` This won't work because it will be automatically changed by the browser to a `text` cursor when dragging. So how? http://jsfiddle.net/nick_craver/uZ377/1/

Original source

Related problems