Skip to content

Instantly share code, notes, and snippets.

@slaffko1
Created November 4, 2018 15:18
Show Gist options
  • Save slaffko1/3a852ad5d7f056f1ad52ee07e1bc5864 to your computer and use it in GitHub Desktop.
Save slaffko1/3a852ad5d7f056f1ad52ee07e1bc5864 to your computer and use it in GitHub Desktop.
$(window).on('scroll', function () {
if($('html').scrollTop()>60){
$('html').addClass('sticky');
} else {
$('html').removeClass('sticky');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment