Figer's Technology Consulting | Simple Javascript to stop the double tap action of zooming on Mobile

Simple Javascript to stop the double tap action of zooming on Mobile



var time_stamp= Date.now();

window.addEventListener("touchstart",function(event_){

if (event_.timeStamp-time_stamp<300){ //300ms delay

    time_stamp= Date.now();

    event_.preventDefault();

    return false;

}

    else{ 

        time_stamp= Date.now();

    }

});

Comments are closed