Touchmove pointer-events: none CSS does not work on Chrome for Android 4.4 / ChromeView



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.

Updated on: 2020-06-25T07:29:12+05:30

245 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements