Simple Javascript to stop the double tap action of zooming on Mobile 25. February 2015 Lucas Comments (0) 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(); }});