I need to prevent page scroll, so I add the following style to body:
overflow: hidden;
This works on desktop. On mobile it has no affect.
After reading this a solution appears to be either adding a child div of body and adding a fixed position.
This works but causes the page to jump to the top if you fix the page when you are half way down the page.
How can I prevent scrolling on mobile without having the page jump to the top?