Event Type Description
scroll.bl.scrollable

Fires when scrolling the element.

scrollEnd.bl.scrollable

Fires when the scrolling has ended.

{% markdown %} ```js $('#my-div').on('scroll.bl.sidebar', function (e, scrollableElement) { // do something when scrolling the element }) ``` {% endmarkdown %}