jQuery add sticky class on scroll

$(window).scroll(function() {

      if ($(this).scrollTop() > 575){  
          $('.side-banner-sticky').addClass("content_fixed");
      }
      else{
          $('.side-banner-sticky').removeClass("content_fixed");
      }
	});

Leave a Reply

Your email address will not be published. Required fields are marked *