Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<script [...]
function redir() { document.location.href = "kategorien.php"; }
window.setTimeout("redir()", 5000)
[...] /script>
<script [...]
window.setTimeout("document.location.href = 'kategorien.php'", 5000)
[...] /script>
<meta http-equiv="refresh" content="5; url=kategorien.php" />
<html>
<head>
<script type="text/javascript">
<!--
function redir(id, time, url) {
if(time == 0) {
document.location.href = url
return
}
document.getElementById(id).innerHTML = time--
call = "redir('"+id+"', "+time+", '"+url+"')"
window.setTimeout(call, 1000)
}
-->
</script>
</head>
<body onload="redir('time', 10, 'http://www.google.de')">
Du wirst in <span id="time">10</span> Sekunden weitergeleitet.
</body>
</html>