I have modified code found on stackoverflow to create buttons to scroll a div on mousedown and stop scrolling on mouseup. Here is the code. Nothing happens with it, no scrolling. It looks to me to have what is needed for scrolling.
jQuery(function($){
$("#prev").mousedown(function(){
startScrolling($(".link_drop_box",$("#editdiv")), "-=10px", true);
}).mouseup(function(){
startScrolling($(".link_drop_box",$("#editdiv")), "-=10px", false);
});
$("#next").mousedown(function(){
scrolling = true;
startScrolling($(".link_drop_box",$("#editdiv")), "+=10px", true);
}).mouseup(function(){
startScrolling($(".link_drop_box",$("#editdiv")), "+=10px", false);
});
});
function startScrolling(obj, param, scrolling)
{
/* alert ('startscrolling '+param); */
obj.animate({"top": param}, "fast", function(){
if (!scrolling) {
obj.stop();
} else {
obj.animate({"top": param}, "fast", function(){
if (scrolling) {
startScrolling(obj, param);
}
});
}
});
}
I have a jsfiddle at http://jsfiddle.net/Ra229/2/ .
What is the mistake in that code?