Don't use overflow: hidden;
on body
. It automatically scrolls everything to the top. There's no need for JavaScript either. Make use of overflow: auto;
:
HTML Structure
lengthy content here
Styling
.overlay{
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
background-color: rgba(0, 0, 0, 0.8);
.overlay-content {
height: 100%;
overflow: scroll;
}
}
.background-content{
height: 100%;
overflow: auto;
}
Play with the demo here.