Skip to content

Instantly share code, notes, and snippets.

@ZellSnippets
Created December 9, 2013 03:16
Show Gist options
  • Save ZellSnippets/7866908 to your computer and use it in GitHub Desktop.
Save ZellSnippets/7866908 to your computer and use it in GitHub Desktop.
JS:Sticky Nav & other items
$(window).scroll(function(event) {
var headerArea = $header.offset().top + $header.height();
var windowTop = $(window).scrollTop();
if (windowTop > headerArea) {
// do stuff
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment