0

http://jsfiddle.net/QKJfW/

I want the cursor to remain the cursor:move; cursor even when clicking and dragging on the page. As you can see now you get an i-bar like you are trying to select text.

In my real app it is actually a custom cursor.

Is that a possibility?

Jason
  • 10,825
  • 23
  • 72
  • 128

1 Answers1

1

Put these styles on the thing you want to be non selectable:

http://jsfiddle.net/QKJfW/1/

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;

That should take care of your issue.

See: How to disable text selection highlighting using CSS?

Community
  • 1
  • 1
Jason
  • 10,825
  • 23
  • 72
  • 128
  • He didn't say he didn't want the item select able...said he wanted to have the cursor remain regardless of mouse input. – Jared Feb 12 '12 at 07:02
  • This will actually work for my purposes. But Jared is right, is there a way to keep my cursor or change the I-Bar? – Jason Feb 12 '12 at 07:10