Changing the browser zoom level

Possible in IE and chrome although it does not work in firefox:

<script>
   function toggleZoomScreen() {
       document.body.style.zoom = "80%";
   } 
</script>

<img src="https://stackoverflow.com/questions/1055336/example.jpg" alt="example" onclick="toggleZoomScreen()">

Leave a Comment