Change cursor when dragging

Oui

New Member
I'm developing drag-and-drop extension for Google Chrome.Selected text on the page can be dropped by user on specific areas implemented with dives and added to DOM.When the text is dragged on such area and not dropped yet the cursor style should be changed.The cursor for these areas is changed in document \[code\]dragstart\[/code\] event with jQuery:\[code\] $(".dropArea").css("cursor", "help");\[/code\]This solution does not work.Could anyone help to find the right solution for this issue?Updated:Example http://jsfiddle.net/mYpXQ/2/
 
Back
Top