Hi guys!
I need an information. Is there a way to make the window unscrollable by touch on touch screen devices? I would like to make it scrollable only from PC.
Top comments(3)

- LocationNortheast USA
- EducationB.S. Chemical Engineering
- WorkSoftware Developer
- Joined
Is there a particular reason you would like to do this? It's not impossible, but it's finicky and prone to bugs, so it might be easier to just rework your design.
Youcould try disabling the relevant "touch*" events, (seeEvent.preventDefault), but that might have some unintended consequences. Many tablet / convertible-style devices (like the Surface) implement these events. Plus, iOS touch-scrolling events are always a pain to work with, since Apple really does not want you messing with page scrolling.

Hmm you could make your page's height in mobile view to something likeheight: 100%
? I would use media queries to adjust based on mobile/laptop and desktop views.
For further actions, you may consider blocking this person and/orreporting abuse