Skip to content

Instantly share code, notes, and snippets.

@itsjavi
Created June 1, 2012 10:16
Show Gist options
  • Save itsjavi/2850978 to your computer and use it in GitHub Desktop.
Save itsjavi/2850978 to your computer and use it in GitHub Desktop.
Stick bootstrap subnav on scroll
// fix sub nav on scroll
var $win = $(window)
, $nav = $('.subnav')
, navTop = $('.subnav').length && $('.subnav').offset().top - 40
, isFixed = 0
processScroll()
$win.on('scroll', processScroll)
function processScroll() {
var i, scrollTop = $win.scrollTop()
if (scrollTop >= navTop && !isFixed) {
isFixed = 1
$nav.addClass('subnav-fixed')
} else if (scrollTop <= navTop && isFixed) {
isFixed = 0
$nav.removeClass('subnav-fixed')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment