Skip to content

Instantly share code, notes, and snippets.

@webhasan
Created December 1, 2017 09:49
Show Gist options
  • Save webhasan/21233f3bbf2cf113cf7cfd131620b051 to your computer and use it in GitHub Desktop.
Save webhasan/21233f3bbf2cf113cf7cfd131620b051 to your computer and use it in GitHub Desktop.
Sticky Sidebar
var stickWidth = 991;
var win = $(window);
var menu = $('.sidebar-wrap');
if (win.width() > stickWidth) {
menu.stick_in_parent();
}
win.resize(function () {
if (win.width() > stickWidth) {
menu.stick_in_parent();
} else {
menu.trigger("sticky_kit:detach");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment