When i have a div with overflow: scroll the event scroll is not firing when i scroll in the div. Maybe we need to pass a parent into the component. so you could bind it to the container element.
Or you bind it to the document:
document.addEventListener('scroll', function() {
console.log("scroll fired");
}, true); // <= important to capture the event
When i have a div with
overflow: scroll
the eventscroll
is not firing when i scroll in the div. Maybe we need to pass a parent into the component. so you could bind it to the container element.Or you bind it to the document:
Or am I missing somethang?