I'm trying to add a class to a div on scroll, but on iOS, the class is only added once the scroll is completed. How can I add the class during the scroll?
$(window).on('scroll.nav', () => {
$(window).scrollTop() >= 110 ? $('body').addClass('menu-fixed') : $('body').removeClass('menu-fixed');
});