I have a div with a scrollbar in it. Now I want to get an event, that triggers every time, the user scrolls.
Is that possible in AngularJS, or do I have to use jQue
Sergey's answer helped me a little, but what ended up working for me was this:
.directive("scroll", function ($window) { return { link: function() { angular.element($window).bind("wheel", function() { console.log('Scrolling'); }); } } })