My page contains two vertical DIVS: nav_div and content_div. My CSS looks like this:
#nav_div{
width: 300px;
height: 100%;
overflow: hidden;
}
#content_div{
position: fixed;
top: 0;
left: 300px;
overflow: auto;
padding: 0px 0 0 0;
}
What I want to accomplish: make the entire page scroll vertically WITH THE MOUSEWHEEL if the mouse is hovering over nav_div