Event Type Description
show.bl.sidebar

Fires when showing the sidebar, but before the sidebar is visibile.

shown.bl.sidebar

Fires when showing the sidebar, after the sidebar is visibile.

hide.bl.sidebar

Fires when the sidebar is hidding, but before the sidebar is hidden.

hidden.bl.sidebar

Fires when the sidebar is hidding, after the sidebar is hidden.

{% markdown %} ```js $('#my-sidebar').on('show.bl.sidebar', function (e, options) { // the sidebar options console.log(options) }) ``` {% endmarkdown %}