README.md
December 4, 2022 ยท View on GitHub
Description
A simple redirect script.
More Info
| Submitted On | |
| By | Tomas Friberg |
| Level | Beginner |
| User Rating | 5.0 (70 globes from 14 users) |
| Compatibility | |
| Category | Internet/ Browsers/ HTML |
| World | Java |
| Archive File |
Source Code
<html>
<head>
<title>Simple redirect</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- hide
function go()
{
window.location.href="http://www.biblioteksbolaget.se"
}
-->
</SCRIPT>
</head>
<body onLoad="setTimeout('go()',5000)">
<p> You will be redirected in 5 seconds.
</body>
</html>