') }); // 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(); $('#top').each(function(i) { // $('.nav-secondary a.active').removeClass('active'); $('.header-logo').hide(); }); // 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').eq(i).addClass('active'); $('.header-logo').show(); } }); }); });