skip to Main Content

I am trying to use Drag on some elements on my application but the cursor changes when i drag. How do I change the cursor when onDrag is active?

2

Answers


  1. Try to set cursor: grab on the element so its visibile that its also a dragable element

    Login or Signup to reply.
  2. n your dragging event set the cursor by:

    element.style.custor = 'grap'
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search