Skip to content

Instantly share code, notes, and snippets.

@mjinayan80
Created October 25, 2017 07:37
Show Gist options
  • Save mjinayan80/f29f91dc5bff937f5900530746678718 to your computer and use it in GitHub Desktop.
Save mjinayan80/f29f91dc5bff937f5900530746678718 to your computer and use it in GitHub Desktop.
jQuery sticky menu
// Sticky Header
$(window).scroll(function() {
if ($(window).scrollTop() > 100) {
$('.main_h').addClass('sticky');
} else {
$('.main_h').removeClass('sticky');
}
});
// if you want to add stick menu on custom div scroll
$(window).scroll(function() {
if ($("your_div").scrollTop() > 100) {
$('.main_h').addClass('sticky');
} else {
$('.main_h').removeClass('sticky');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment