Skip to content

Instantly share code, notes, and snippets.

@rbk
Last active September 14, 2015 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rbk/69f0d633719bf7d6dc99 to your computer and use it in GitHub Desktop.
Save rbk/69f0d633719bf7d6dc99 to your computer and use it in GitHub Desktop.
$(window).scroll(function(){
if( $(window).scrollTop() >= $('#site-navigation').height() ){
$('#site-navigation').css({position : 'fixed', top: '0', 'z-index' : 9, width: '100%'});
} else {
$('#site-navigation').css({position : 'relative'});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment