I've been trying to disable scrolling a page. All I have found are solutions of the type:
#container{
overflow: hidden;
}
But this just hides the scroll bar. How would I disable scrolling even with it being displayed on the screen ?
Issue
It does not matter if it will be css or other web technology client-side
, I just want to know if there is any way.