Agreed with Admir, according to the slimscroll documentation start , defined as
start - top or bottom or $ (selector) - defines the initial position of the scroll bar. When it is set to the bottom, it automatically scrolls down the scrollable container.
This will only work when initializing Slimscroll. If you want to adjust the Slimscroll position after initialization, you can use the scrollTo option.
var container = $(selector); container.slimScroll({ scrollTo: container[0].scrollHeight });
Each time you change the position of Slimscroll, the scroll bar will be displayed for a while and then disappear, which will obviously make it distracting. You can use this alternative for this.
var container = $(selector); container.scrollTop(container[0].scrollHeight);
source share