Skip to content

Instantly share code, notes, and snippets.

@planetWayne
Last active December 11, 2019 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save planetWayne/61eb6a4367573ff42e725d1842fd9bbf to your computer and use it in GitHub Desktop.
Save planetWayne/61eb6a4367573ff42e725d1842fd9bbf to your computer and use it in GitHub Desktop.
Enable Web Page Scrolling when Disabled by a Popup Alert.

In a browser like Chrome etc.:

  • Inspect the code (for e.g. in Chrome press ctrl + shift + c);
  • Set overflow: visible on body element (for e.g., <body style="overflow: visible">)
  • Find/Remove any JavaScripts that may routinely be checking for removal of the overflow property:
  • To find such JavaScript code, you could for example, go through the code, or click on different JavaScript code in the code debugger console and hit backspace on your keyboard to remove it.
  • If you're having trouble finding it, you can simply try removing a couple of JavaScripts (you can of course simply press ctrl + z to undo whatever code you delete, or hit refresh to start over).

https://stackoverflow.com/questions/39360138/how-to-enable-scrolling-on-website-that-disabled-scrolling

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment