Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
<html>
<head>
<title>SteuerFrame</title>
<script language=javascript>
function switch()
{
strSeite1= "http://www.seite1.de";
strSeite2= "http://www.seite2.de";
if(top.hauptframe.document.location.href.indexOf(strSeite1) != -1){
top.hauptframe.document.location.href=strSeite2;
}
else {
top.hauptframe.document.location.href=strSeite1;
}
}
</script>
<body>
<center><input type=button value="SW!TCH" OnClick="switch();"></center>
</body>
</html>