Skip to content

Instantly share code, notes, and snippets.

@DevShahidul
Last active June 1, 2017 06: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 DevShahidul/33277a159a3cfbd556efcac4157d4e48 to your computer and use it in GitHub Desktop.
Save DevShahidul/33277a159a3cfbd556efcac4157d4e48 to your computer and use it in GitHub Desktop.
$(window).scroll(function(){
var contentNav = $('section.hero-section').height()
if($(window).scrollTop() > contentNav ){
$('#content-nav').addClass('fixedNav')
$('#who-we-are').addClass('content-nav-fixed')
}
else{
$('#content-nav').removeClass('fixedNav')
$('#who-we-are').removeClass('content-nav-fixed')
}
})
// or
var contentNav = $('#content-nav').offset().top - 0
$(window).scroll(function(){
if($(window).scrollTop() >= contentNav ){
$('#content-nav').addClass('fixedNav')
$('#who-we-are').addClass('content-nav-fixed')
}
else{
$('#content-nav').removeClass('fixedNav')
$('#who-we-are').removeClass('content-nav-fixed')
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment