How can I hide the scroll bar when an overlay is displayed on my page?
.overlay{
display: none;
opacity:0.8;
background-color:#ccc;
position:fixed;
width:100%;
height:100%;
top:0px;
left:0px;
z-index:1000;
}
<div onclick="show_overlay_fn()">
CLICK HERE
</div>
<br>
<div id="overlay" class="overlay"></div>
<script>
function show_overlay_fn(){
document.getElementById("overlay").style.display = "block";
}
</script>
Lots of text to create scroll bars...