Skip to content

Instantly share code, notes, and snippets.

@carolina-vallejo
Created September 26, 2017 08:28
Show Gist options
  • Save carolina-vallejo/dd6484e56ebbcc2e28767e692e4f9d61 to your computer and use it in GitHub Desktop.
Save carolina-vallejo/dd6484e56ebbcc2e28767e692e4f9d61 to your computer and use it in GitHub Desktop.
fixed nav jquery javascript
fixednav();
$(window).scroll(function() {
fixednav();
});
function fixednav() {
if (!isMobile()) {
if ($(window).scrollTop() > 250) {
$body.addClass('fixed-nav');
} else {
$body.removeClass('fixed-nav');
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment