You can create your own βslidersβ using jQuery UI, and then after the change do what βuserDβ suggested. One slider will be horizontal, one vertical (of course).
Then you want to hide the actual browser scrollbars for a particular div using css ("overflow: hidden;")
@UserD was suggested here ....
$ ("html, body"). animate ({scrollTop: 0}, "slow");
You, of course, change this to "#myDiv" instead of "html, body".
source share