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.
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.
you can use jQuery. something like this
$("body").bind("mousewheel", function() {
return false;
});
Youcan bind touchstart
event, but there is no scrollbar on mobile, so how would user scroll?
$("body").bind("mousewheel, touchstart", function() {
return false;
});
Well I find this solution
touch-action: pan-x;
it will allow you to click the content but will unable to scroll it down