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.

Lakshmi Srinivas
Lakshmi Srinivas

Programmer / Analyst / Technician

Updated on: 25-Jun-2020

157 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements