Prevent Scrolling in HTML5

31,526

You don't need JavaScript, just use CSS. Set overflow: hidden;:

body {
    overflow: hidden;
}
Share:
31,526
Phil
Author by

Phil

I am an Sr. Software Engineer at Medtronic. I have experience with multiple mobile, web, and desktop technologies and programming languages, but primarily work with Android. I have several applications in the Google Play store, and have helped develop over a dozen privately owned, mobile games and applications for Android, iOS, and Web. I am an active member of the StackOverflow and GitHub, and am proud of my contributions. #SOreadytohelp

Updated on April 10, 2020

Comments

  • Phil
    Phil about 4 years

    I would like to prevent all forms of page scrolling in my HTML5 application. I have tried searching on SO and Google for a general answer for Prevent all scrolling mechanisms, but everything is very specific - like how to disable scrolling with touches, or with arrow keys, or the scrollbars themselves.

    The reason I am looking for this is to be able to create a new div below the visible screen, and animate it up (and down. This MoonBase shows what I mean.), and I don't want the user to be able to scroll down to see it. Is this possible? Is there a meta tag I can set? Or CSS? - Or, am I taking the wrong approach to my animation? That is, would all my problems be fixed if I simply animated in from the side instead (and included the meta tag width=device-width)? Is that the closest way for me to get the desired behavior?