Skip to content

Instantly share code, notes, and snippets.

@Serega1288
Last active March 7, 2016 08:22
Show Gist options
  • Save Serega1288/0beaf013fde3092f7dc2 to your computer and use it in GitHub Desktop.
Save Serega1288/0beaf013fde3092f7dc2 to your computer and use it in GitHub Desktop.
scrollTop to window
$(window).scroll(function() {
if ($(this).scrollTop() > 1){
$('header').addClass("sticky");
}
else{
$('header').removeClass("sticky");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment