Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script type="text/javascript">
function zoom() {
if( document.body.style.zoom != 0 )
document.body.style.zoom *= 2;
else
document.body.style.zoom = 2;
}
</script>
<a onclick="zoom();">zoom in</a>
<html>
<frameset cols="50%,50%">
<frame src="frame1.html" name="Frame1"></frame>
<frame src="frame2.html" name="Frame2"></frame>
</frameset>
</html>
<html>
<head>
<script type="text/javascript">
<!--
function zoom(whatToZoom) {
if (whatToZoom.style.zoom != 0) {
whatToZoom.style.zoom *= 2;
} else {
whatToZoom.style.zoom = 2;
}
}
//-->
</script>
</head>
<body>
<h1>Frame 1</h1>
Click <a href="javascript:zoom(document.getElementsByTagName('body')[0]);">here</a> to zoom this frame
<br />
Click <a href="javascript:zoom(window.parent.frames['Frame2'].document.getElementsByTagName('body')[0]);">here</a> to zoom Frame 2
</body>
</html>
<html>
<head></head>
<body>
<h1>Frame 2</h1>
</body>
</html>