Best solution to this is css/html: Make a div to wrap your elements in, if you dont have it already And set it to position fixed and overflow hidden. Optional, set height and width to 100% if you want it to fill the whole screen and nothing but the whole screen
#wrapper{_x000D_
height: 100%;_x000D_
width: 100%;_x000D_
position: fixed;_x000D_
overflow: hidden;_x000D_
}
_x000D_
<div id="wrapper">_x000D_
<p>All</p>_x000D_
<p>Your</p>_x000D_
<p>Elements</p>_x000D_
</div>
_x000D_