jQuery-slimScroll
jQuery-slimScroll copied to clipboard
[NFR] slimscroll().scrollTo(element) method
Hi,
Thanks for the great plugin!
It would be nice to have an API method that would scroll to either pixel position or element inside scrollable area:
$(scrolledArea).slimScroll().scrollTo($('#el'));
$(scrolledArea).slimScroll().scrollTo('200px');
Cheers!
+1
jquery-scrollintoview
does not work with this plugin
I'm facing the same issue.
I handle it myself. This works for me:
var scrollToVal = $(scrolledArea).scrollTop() + $('#el').position().top;
$(scrolledArea).slimScroll({ scrollTo : scrollToVal + 'px' });
I handle it myself. This works for me:
var scrollToVal = $(scrolledArea).scrollTop() + $('#el').position().top; $(scrolledArea).slimScroll({ scrollTo : scrollToVal + 'px' });
Hi, i have tried this using dynamic px & sessionStorage, But when I scrolledUp in menu div it resetting to top of menuBar every time is not user friendly. I used fixed-sidebar with slimScroll. Any help regading this?
Would be better if there is option to scroll to bottom always to bottom/end like e chat window.