Prevent the content to scroll down with the mouse scroll unless by using the scroll bar

147 Views Asked by At

How can I make the content none scrollable by the mouse wheel, but instead, can only be scrolled down using the scroll bar.

Thanks so much.

3

There are 3 best solutions below

2
On BEST ANSWER

Youcan bind touchstart event, but there is no scrollbar on mobile, so how would user scroll?

$("body").bind("mousewheel, touchstart", function() {
     return false;
});

Demo fiddle

0
On

Well I find this solution

touch-action: pan-x;

it will allow you to click the content but will unable to scroll it down

1
On

you can use jQuery. something like this

$("body").bind("mousewheel", function() {
     return false;
});