$(document).ready(function() { // Header Scroll $(window).on('scroll', function() { var scroll = $(window).scrollTop(); if (scroll >= 44) { $('#head').addClass('fixed'); } else { $('#head').removeClass('fixed'); } }); // Page Scroll var sections = $('section') nav = $('nav[role="navigation"]'); $(window).on('scroll', function () { var cur_pos = $(this).scrollTop(); sections.each(function() { var top = $(this).offset().top - 44 bottom = top + $(this).outerHeight(); if (cur_pos >= top && cur_pos <= bottom) { nav.find('a').removeClass('active'); nav.find('a[href="#'+$(this).attr('id')+'"]').addClass('active'); } }); }); });