Skip to content

Instantly share code, notes, and snippets.

@Tsunamijaan
Created September 12, 2018 10:32
Show Gist options
  • Save Tsunamijaan/0c9a91e2071eeb9a5100a2d05e65be1c to your computer and use it in GitHub Desktop.
Save Tsunamijaan/0c9a91e2071eeb9a5100a2d05e65be1c to your computer and use it in GitHub Desktop.
/* TOP Menu Stick */
$(window).on('scroll',function() {
if ($(this).scrollTop() > 1){
$('#sticky-header').addClass("sticky");
}
else{
$('#sticky-header').removeClass("sticky");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment