Custom cursor during Drag-drop
Web Development
1
Posts
1
Posters
0
Views
1
Watching
-
Does anyone know if it is possible to have a custom cursor during drag and drop in IE. I have a some script-function-events asigned to an image object: Simalar to the following:
function handleMouseMove(e) { if (!e) var e = window.event; var elm = e.srcElement; elm.dragDrop(); } function handleDragStart(e) { // doing some stuff... } function handleDraging(e) { // doing a lot of stuff // cursor is 'no-drop' don't want it to be. // can not use "window.event.returnValue = false;" beacuse other stuff will stop work then. } function handleDragEnd(e) { // Doing stuff. }
So what I want is to asign an other cursor thatn the default 'no-drop' when draging the specified object (an image). Thanks! /Mattias