Showing posts with label scroll. Show all posts
Showing posts with label scroll. Show all posts

Monday, March 5, 2018

Disable bouncing scroll in Safari on touch device.

Add next code in your main page.
document.ontouchmove = function(event){
  event.preventDefault();
}
Or use this solution.
https://github.com/timbartsch/no-bounce