This solution from the above comments works, but only when the mouse is over the actual element on the page.
$(window).bind('mousewheel', function(event, delta) { if (delta > 0) { window.scrollBy(-80,0); } else window.scrollBy(80,0) ; });
When you just throw in empty space (for example, if your content is very short and bottom to bottom), it will work for about one scroll, and then it will break (until you scroll back), why you might think that scrolling works only in one direction . It also looks like all the scrolling plugins that people recommend for this. Hope this helps people find a solution in the future.
source share