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.
frameName.scrolling = 'no';
frameName.setAttribute('scrolling', 'no');
[COLOR=green]
<html><head>
<title>Test</title>
</script>
</head>
<frameset rows="20%,80%" border="1" framespacing="5" frameborder="1" scrolling="yes">
<frame SRC="top.html" scrolling="no" marginwidth="2">
<frameset cols="20%,55%,20%" scrolling="yes">
<frame src="links.html" name="links_frame">
<frame src="main.html" name="main_frame" id="main_frame" scrolling="no">
<frame src="extra.html" name="extra_frame" scrolling="no">
</frameset>
</frameset>
</html>
<html>
<body background="computerback.gif">
<center>
<P><P>
<font size="+2" color="white"><b>click.to.proceed</b></font><P>
<a href="stories.html" onClick="window.document.main_frame.setAttribute('scrolling', 'yes');" target="main_frame"><img src="button1.jpg"></a><P>
</center>
</body>
</html>
[/color]
parent.main_frame.setAttribute('scrolling', 'yes');
top.main_frame.setAttribute('scrolling', 'yes');
parent.main_frame.scrolling = 'yes';
top.main_frame.scrolling = 'yes';