In my Javascript app I am having issues with event bubbling, namely I would like not to trigger mouseleave
after mouse up on an element (have implemented dragging behavior therefore it moves and mouse leaves it).
How can I do that ?
EDIT
I am using d3.js
to capture event in the following way :
d3.selectAll("circle")
.on("mouseover", function(d,i){
...
}
.on("mouseup", function(d,i){
...
}
.on("mouseleave", function(d,i){
...
}
I have solved it in similar way to user1671639's adivice with boolean check :
EDIT
Is there any more elegant way to do this ?