Answer the question
In order to leave comments, you need to log in
Disable scale ( zoom ) on ios safari, firmware above 10?
on ios devices, the ban on scale through the viewport does not work, help!
put this meta tag
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" />
Answer the question
In order to leave comments, you need to log in
document.addEventListener('touchmove', function (event) {
if (event.scale !== 1) { event.preventDefault(); }
}, false);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question