I have a drag UI program, where the mouse cursor on the draggable element changes to a grabbing hand on click.
The problem is, I allow the drag to happen anywhere on screen, and the cursor changes over anchor tags, etc...
I've tried $('*').addClass('grabbing')
, but it's REALLY expensive.
Is there a simple easy code efficient way to handle this?