I have a box that is 250px x 250px. I want to make it scrollable, but I don't want to have the scrollbars appear because of how much space they take up. I assume this is possible with jQuery, but not finding anything. Anyone know?

link|improve this question

57% accept rate
feedback

1 Answer

up vote 4 down vote accepted

You can put what you want to scroll inside a another div, whose size is set. And make the css of this container to overflow: hidden; so there are no scroll bars. Then you can create some triggers (click on up/down arrows, etc.) that trigger a scrollTo on the container div.

Here's an example: http://jsfiddle.net/UwEe2/

link|improve this answer
I will try that, thanks! Basically all I want is for them to be able to scroll it up and down only by hovering over the box and using the mouse or track pad to scroll. – ansarob Mar 11 '11 at 18:52
Great answer, thanks. – imjared Sep 19 '11 at 17:22
This doesn't seem to work on the root scrollable element (in some browsers it's the body element, in others the html element). – trusktr Apr 16 at 8:53
feedback

Your Answer

 
or
required, but never shown

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