Add class when scroll, remove when back to top

// Sticky Header $(window).scroll(function () { if( $(window).scrollTop() > $('#hero').offset().top && !($('header').hasClass('sticky-header'))){ $('header').addClass('sticky-header'); } else if ($(window).scrollTop() === 0){ $('header').removeClass('sticky-header'); } });

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.