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.
<html>
<script language = "vbscript">
sub vbsSwitch(page)
top.location.href = page
end sub
</script>
<script language = "javascript">
function jsSwitch(page){
top.location.href = page
}
</script>
<body>
<input type=button value="VBS Switch" onClick="vbsSwitch('test2.html')">
<input type=button value="JS Switch" onClick="jsSwitch('test3.html')">
</body>
</html>