Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to interrupt scroll with jquery

$('body,html').bind('scroll mousedown wheel DOMMouseScroll mousewheel keyup touchmove', function (e) {
  if (e.which > 0 || e.type == "mousedown" || e.type == "mousewheel" || e.type == "touchmove") {
    $("html,body").stop();
  }
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #interrupt #scroll #jquery
ADD COMMENT
Topic
Name
3+7 =