Skip to content
Advertisement

How to block the page scrolling without affecting the style?

I’d like to block the page scrolling but without change my page style (e.g. using overflow: hidden;).

I tried to use this:

JavaScript

but but the scrolling didn’t blocked and I received this console error:

JavaScript

Any solutions?

Advertisement

Answer

I found out the right way to disable the scrolling:

JavaScript

In order to allow it again:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement