Skip to content

Instantly share code, notes, and snippets.

@bulbul84
Created August 4, 2015 17:05
Show Gist options
  • Save bulbul84/efe63bbbeb8c6b86f588 to your computer and use it in GitHub Desktop.
Save bulbul84/efe63bbbeb8c6b86f588 to your computer and use it in GitHub Desktop.
// 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