Skip to content

Instantly share code, notes, and snippets.

@Unh0lyTigg
Created August 8, 2014 23:58
Show Gist options
  • Save Unh0lyTigg/ebbfda8ea8c9fb3cd39e to your computer and use it in GitHub Desktop.
Save Unh0lyTigg/ebbfda8ea8c9fb3cd39e to your computer and use it in GitHub Desktop.
$(document).scroll(function() {
if ($(document).scrollTop() > 0) {
$('header').css('position', 'fixed');
$('header').css('z-index', '1');
} else {
$('header').css('position', 'static');
$('header').css('z-index', 'auto');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment