$(function() { var stickyNavTop = $('#header_above').offset().top; var stickyNav = function(){ var scrollTop = $(window).scrollTop(); if (scrollTop > stickyNavTop) { $('#header_above').addClass('container-sticky'); if ($('.header_above_sticky-fill-up').length == 0) { $('#header_above').before('
'); } } else { $('#header_above').removeClass('container-sticky'); $('.header_above_sticky-fill-up').remove(); } }; stickyNav(); $(window).scroll(function() { stickyNav(); }); });