How can I stop scrolling and resume scrolling when a button is clicked?

How can I stop scrolling with jquery when scrolling reaches a specific section or block on my page?

and how can I resume scrolling when I click a button or link in this section?

and thank you in advance.

+4
source share
1 answer

Using mouse wheel

$('body').on({
    'mousewheel': function(e) {
        if (e.target.id == 'domid') return;
        e.preventDefault();
        e.stopPropagation();
    }
});
+1
source

Source: https://habr.com/ru/post/1543474/


All Articles