Js stickit sidebar
Sat Sep 27 2025 12:48:13 GMT+0000 (Coordinated Universal Time)
Saved by
@vanthien
var $sticky = $(".sticky-column").stickit({
scope: StickScope.Parent,
top: 20,
screenMinWidth: 980
});
$sticky.bind('stickit:end', function () {
$('.sticky-column').addClass('bottom-0');
});
$sticky.bind('stickit:stick', function () {
$('.sticky-column').removeClass('bottom-0');
});
https://github.com/emn178/jquery-stickit
content_copyCOPY
Comments