The touchstart event is fired when the touchpoint is positioned on the touch surface. Use addEventListener() for touchmove pointer-events −
overlay.addEventListener('touchstart', function(ev){
ev.preventDefault();
});Here, we have also used the preventDefault() method. The preventDefault() method prevents the browser from executing the default action.