Answers for "stop scroll jquery"

0

disable scroll jquery

//This will completely disable scrolling:
$('html, body').css({
    overflow: 'hidden',
    height: '100%'
});

//To restore:
$('html, body').css({
    overflow: 'auto',
    height: 'auto'
});
Posted by: Guest on July-01-2021
-1

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();
  }
});
Posted by: Guest on September-20-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language