Skip to content

Instantly share code, notes, and snippets.

@hellofromtonya
Last active August 29, 2015 14:06
Show Gist options
  • Save hellofromtonya/199a73d5cf6ca4cb9d4d to your computer and use it in GitHub Desktop.
Save hellofromtonya/199a73d5cf6ca4cb9d4d to your computer and use it in GitHub Desktop.
Hide header nav on homepage until reader begins scrolling down the page - Genesis framework
<script type="text/javascript">
(function($) {
$(document).ready(function () {
var headerNav = $('body.home').find('nav.nav-header');
headerNav.hide();
$(window).scroll(function(){
if ($(this).scrollTop() > 100)
{
headerNav.fadeIn();
}
else
{
headerNav.fadeOut();
}
});
});
})(jQuery);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment