Skip to content

Instantly share code, notes, and snippets.

@Korveld
Last active January 19, 2016 14:47
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 Korveld/2925a38d848c1535319f to your computer and use it in GitHub Desktop.
Save Korveld/2925a38d848c1535319f to your computer and use it in GitHub Desktop.
Sticky header
// Sticky header
$(window).scroll(function() {
if ( $(this).scrollTop() > 0 ) {
$('.top-block').addClass('fixed');
} else if( $(this).scrollTop() == 0 ) {
$('.top-block').removeClass('fixed');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment