Skip to content

Instantly share code, notes, and snippets.

@Manoz
Created July 27, 2013 21:59
Show Gist options
  • Save Manoz/6096453 to your computer and use it in GitHub Desktop.
Save Manoz/6096453 to your computer and use it in GitHub Desktop.
Fixed header on scroll
$(window).scroll(function() {
if ($(this).scrollTop() > 80) {
$('.fixed-header').addClass('fixed');
} else {
$('.fixed-header').removeClass('fixed');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment