showing results for - "how to interrupt scroll with jquery"
Ronny
18 Jan 2021
1$('body,html').bind('scroll mousedown wheel DOMMouseScroll mousewheel keyup touchmove', function (e) {
2  if (e.which > 0 || e.type == "mousedown" || e.type == "mousewheel" || e.type == "touchmove") {
3    $("html,body").stop();
4  }
5});