I've got several divs on my page that look like this:
<div style="height:200px; overflow:auto;">
<div style="height:300px;">
<!--Lots of text here-->
</div>
</div>
When the user hovers over them and scrolls with the scroll wheel they scroll fine. The trouble is that, when the user reaches the bottom, the page itself starts scrolling instead.
Is there a way to stop this happening (using javascript if necessary), so that the focus stays on the div even when it has scrolled to the bottom and the page itself only scrolls when the user is not hovered over a div?