vote up 0 vote down star

Using the latest jQuery/UI that are hosted at Google. I've got the following markup:

<ul id="tree">
    <li><a href="1/">One</a></li>
<li><a href="2/">Two</a></li>
</ul>

And the following javascript:

$(document).ready(function(){

    // Droppable callbacks
function dragOver(overEvent, ui_object) {
    $(this).mousemove(function(moveEvent){
        console.log("moved over", this);
    });
}

function drop_deactivate() {
    $(this).unbind();
}

function drag_out() {
    $(this).unbind();
}

// Actual dragging
$("#treeContainer li").draggable({
    revert: true,
    revertDuration: 0
});

// Actuall dropping
$("a").droppable({
    tolerance: "pointer",
    over: dragOver,
    deactivate: drop_deactivate,
    out: drag_out
});

});

If I drag the first li down over the second, the mousemove function fires (and firebug logs the output). But if I drag the second li up over the first, the mousemove function doesn't fire. You can see this live at http://jsbin.com/ivala. Is there a reason for this? Should I be trapping the mousemove event in some other way?

Edit: It appears as thought the mousemove() event isn't binding for earlier elements than the one currently being dragged (should be bound upon their mouseover).

flag

I opened the link and sometimes dragging the second li up over the first firebug logs the output. But it's much more easier dragging the first up over the second. – Daniel Moura Aug 19 at 18:58
I've noticed that too. It's not regualr behavior; very puzzling. – saturdayplace Aug 19 at 21:26
What are you trying to accomplish by adding the mousemove event? – petersendidit Aug 22 at 15:20
I want to know where the mouse cursor is relative to the element, top/middle/bottom. – saturdayplace Aug 24 at 21:22

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.