Skip to content

Instantly share code, notes, and snippets.

@shehabkhan013
Created April 27, 2017 18:09
Show Gist options
  • Save shehabkhan013/7ea35ee836025e8f76b76fe31c8aa3f5 to your computer and use it in GitHub Desktop.
Save shehabkhan013/7ea35ee836025e8f76b76fe31c8aa3f5 to your computer and use it in GitHub Desktop.
When Manu is Stick
/* sticky-menu */
$(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