How can I assign a class to the body as soon as you scroll?

var targetDiv = $('body');

$(window).scroll(function() {

     var windowpos = $(window).scrollTop();

     if( windowpos >= 50 ) {
          targetDiv.addClass('active');
     } else {
          targetDiv.removeClass('active');
     }

});
Without cookies
This website does not use cookies or tracking. More information can be found in the privacy policy.