Swiping from the left and right edges of my iPad\'s Safari browser, moves between the currently open web pages. Is there any way to prevent it?
I have tried to add <
Apple provided these guidelines after iOS9.
The guide lets you disable
Scrolling
function touchMove(event) {
// Prevent scrolling on this element
event.preventDefault();
...
}
Pinch and Zoom
function gestureChange(event) {
// Disable browser zoom
event.preventDefault();
...
}
You can identify a swipe gesture as follows:
The full guide is poster here.
Let me know if you need more help.
Nitin, Defuzed