Skip to content

Instantly share code, notes, and snippets.

@mushfiqur-rahman
Forked from mdsalim/sticky ......
Created January 31, 2018 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mushfiqur-rahman/6624fb410048ed4cba26f77e559c477b to your computer and use it in GitHub Desktop.
Save mushfiqur-rahman/6624fb410048ed4cba26f77e559c477b to your computer and use it in GitHub Desktop.
$(window).on('scroll',function() {
var scroll = $(window).scrollTop();
if (scroll < 245) {
$(".header-middle").removeClass("scroll-header");
}else{
$(".header-middle").addClass("scroll-header");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment