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?

link|improve this question

76% accept rate
Your selectors are all wrong, maybe try to simplify the html code a bit and try again. There are no elements with class "link_drop_box" and there is no element with ID "editdiv". – Deleteman Sep 26 '11 at 19:33
feedback

1 Answer

up vote 1 down vote accepted

Updated your jsfiddle: http://jsfiddle.net/thomas_peklak/Ra229/5/

It's still kind of buggy, but I think you should be able to start with this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.