') }); // Popup share button $(document).on('click', '.popup', function(e){ var NWin = window.open($(this).prop('href'), '', 'height=800,width=800'); if (window.focus) { NWin.focus(); } return false; }); $(window).scroll(function() { var scrollDistance = $(window).scrollTop() + 50; // Assign active class to nav links while scolling $('.section-linked').each(function(i) { if ($(this).position().top <= scrollDistance) { $('.nav-secondary a.active').removeClass('active'); $('.nav-secondary a:not(".inactive")').eq(i).addClass('active'); } }); }); });