Skip to content

Instantly share code, notes, and snippets.

@keks55
Created June 19, 2017 12:58
Show Gist options
  • Save keks55/830c9d3e29e447566929597b4c2528c9 to your computer and use it in GitHub Desktop.
Save keks55/830c9d3e29e447566929597b4c2528c9 to your computer and use it in GitHub Desktop.
$(window).on('scroll', function() {
$('*[class^="land"]').each(function() {
if($(window).scrollTop() >= $(this).offset().top) {
var id = $(this).attr('id');
$('a').removeClass('current');
$('a[href=#'+ id +']').addClass('current');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment