Skip to content

Instantly share code, notes, and snippets.

@johhansantana
Last active November 18, 2015 19:28
Show Gist options
  • Save johhansantana/536918701c4a14b9e4f8 to your computer and use it in GitHub Desktop.
Save johhansantana/536918701c4a14b9e4f8 to your computer and use it in GitHub Desktop.
show navbar after scrolling down
$(function(){
$(window).scroll(function(){
var windscroll = $(window).scrollTop();
if ($('#navbar').position().top < windscroll) {
$('#navbar').fadeIn();
}else{
$('#navbar').fadeOut();
};
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment