Sorry that i don't have an example.
However i'm creating a scrolling box (scrolls left and right) I have bind mouseDown functions to 2 images (these are used to scroll the box). the functions are "scrollLeft()" and "scrollRight()".
These funtions work as planned (moving the box left and right). However i have a problem with the mouseUp event. When i keep my mouse over the images and mouseup the scroll event gets canceld, meaning the scrolling stops.
However, if i move my mouse off the image and mouseup the scroller keeps doing it's function.
I'm using jquery and have tried all sorts of things including
$("*").mouseup(function(){
console.log("ouseup");
clearInterval(interval);
});
This doesnt work either. I want to kill the "interval" interval when ever the mouseup is triggered.
Any suggestions?