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.
Youcan bind touchstart
event, but there is no scrollbar on mobile, so how would user scroll?
$("body").bind("mousewheel, touchstart", function() {
return false;
});