Skip to content

Instantly share code, notes, and snippets.

@getflourish
Created September 28, 2011 07:17
Show Gist options
  • Select an option

  • Save getflourish/1247214 to your computer and use it in GitHub Desktop.

Select an option

Save getflourish/1247214 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(document).ready(function() {
$('#start-end').waypoint(function(event, direction) {
if (direction == "down") {
$('nav').css('position', 'fixed');
} else {
$('nav').css('position', 'relative');
}
}, {
offset: 0
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment