Catching Mouse Wheel Scroll inside Non-scrollable Div
问题 Is there a way to catch the scroll event while mouse is positioned over a div that is not scrollable? My intent is to feign scrolling by adjusting top offset until div inside of div is above view then move top offset of inner div to below view of outter div . Kind of like a carousel, but vertical and controlled by scrolling of the mouse wheel. Obviously, to catch scroll events, I would use angular.element(elem).find('.divClass').bind('scroll', function(){...}); to handle scrolling that is