Any insights on how to catch a scrolling event on a element that has overflow:hidden? I would like to scroll in a column without showing a scrollbar to the user.
$("body").css("overflow", "hidden") $(document).bind('mousewheel', function(evt) { var delta = evt.originalEvent.wheelDelta console.log(delta) })
works for me. adapted from How do I get the wheelDelta property?