jquery-scroll icon indicating copy to clipboard operation
jquery-scroll copied to clipboard

a jquery plugin rendering a custom, CSS styleable vertical scrollbar for overflowed elements.

Results 19 jquery-scroll issues
Sort by recently updated
recently updated
newest added

Hey, guys! I've found an error in library: on 172 line ``` javascript scrollto: function(to){ return this.each(function(){ this.scrollbar.scrollto(to); }); }, ``` if there are no enough content in my div,...

The unscrollbar function wasn't working correctly. It fetched everything except text nodes, but including children of children. So all text was missing while other elements where doubled.

I added so that the height of the handle container is updated in the repaint method. This makes sense if you programatically want to alter the size of your scrollable...

This error raises when i use scrollto on div without overflowing content. Light fix for prevent this error :)

There seemed to be a typo (compared to jquery.mousewheel.js) which prevented the mousewheel from working correctly. In addition I've increased the mousewheel speed to a more sensible value (closer to...

Hello, I needed some mobile scrolling and made the following code. Functions to add: ``` onTouchStart : function(e){ this.touch = { start : { y : e.touches[0].pageY } }; },...

Hi, nice plugin :) After calling repaint method, handle container remains visible all the time (with 1px handle offset) even when it's not needed, content is less than before when...

I could not find an option to use this scroll bar horizontally instead of vertically. Is there any plan to provide that later? Am I missing something?

want to try to implement infinite scroll with the scroll bar. I have a load ,ore button in this theme I'm using, if i could trigger an event when the...