I am trying to make an image draggable but drag a clone of the image (rather than the image itself). The copy seems to be working fine but the onmousemove trigger doesn't seem to fire until the onmouseup trigger has fired. I wouldn't think this is how things worked.
var Draggable = {
obj : null,
clone : null,
init : function(o) {
Draggable.obj = o;
o.onmousedown = Draggable.start;
},
createClone : function() {
Draggable.clone = Draggable.obj.cloneNode(true);
Draggable.clone.style.position = 'absolute';
Draggable.clone.style.top = '10px';
Draggable.clone.style.left = '40px';
Draggable.clone.id = 'dragClone';
Draggable.obj.parentNode.appendChild(Draggable.clone);
},
start : function() {
Draggable.createClone();
document.onmousemove = Draggable.beginDrag;
document.onmouseup = Draggable.endDrag;
},
beginDrag : function(e) {
Draggable.clone.style.top = e.clientY + 'px';
Draggable.clone.style.left = e.clientX + 'px';
},
endDrag : function () {
document.onmousemove = null;
},
};
window.onload = function() { Draggable.init(document.getElementById("monkey")) };
An example of the issue here
