#hideAll
{
position: fixed;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
background-color: white;
z-index: 99;
}
<div style="display: none" id="hideAll">здесь ваш контент</div>
<script type="text/javascript">
document.getElementById("hideAll").style.display = "block";
</script>