My application has many drag and drop features. While dragging I want the cursor to change to some grab cursor. Internet Explorer and Firefox work fine for this, but Chrome
I solved a same issue by making the Elements not selectable, and adding an active pseudo class on the draged elements:
* { -webkit-user-select: none; } .your-class:active { cursor: crosshair; }