michael-d
9/11/2017 - 1:00 AM

This script will add a class to the chosen div on scroll

This script will add a class to the chosen div on scroll

<script>
$(document).ready(function(){
var shrinkHeader = 300;
  $(window).scroll(function() {
    var scroll = getCurrentScroll();
      if ( scroll >= shrinkHeader ) {
           $('#menu').addClass('shrink');
        }
        else {
            $('#menu').removeClass('shrink');
        }
  });
function getCurrentScroll() {
    return window.pageYOffset || document.documentElement.scrollTop;
    }
});
</script>