disable zoom for safari browser on mobile
var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor); if (isSafari) { document.addEventListener('gesturestart', function (e) { e.preventDefault(); }); }
Check safari and disable zoom on browser. it's not stable. not recomment for use that.











