Disable Browser View in IE11
I want to disable scaling in IE11. I found this line
<script>document.firstElementChild.style.zoom = "reset";</script>
do what i really want, but only works in chrome. Is there an alternative for IE11.
+3
Amirado
source
to share
1 answer
Using
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
in the section of <head>
your document to prevent the website from scaling on mobile devices. What matters here user-scalable=no
is what does the trick.
+1
Aakash verma
source
to share