This file contains hidden or 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).scroll(function() { | |
var scroll = $(window).scrollTop(); // how many pixels you've scrolled | |
var offset31 = $('#post-31').offset().top - $navHeight; | |
var height31 = $('#post-31').height(); | |
var post31 = offset31 + height31; | |
var offset37 = $('#post-37').offset().top - $navHeight; | |
var height37 = $('#post-37').height(); | |
var post37 = offset37 + height37; |