Created
June 19, 2017 12:58
-
-
Save keks55/830c9d3e29e447566929597b4c2528c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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