I wrote a jQuery plugin for this: $. disablescroll .
It stops scrolling from the mouse wheel, touch button, and buttons, such as Page Down .
$('.news-wrap').mouseenter(function() { $(window).disablescroll(); }).mouseleave(function() { $(window).disablescroll("undo"); });
Hope someone finds this helpful.
source share