README.md
December 5, 2022 ยท View on GitHub
Description
How do I redirect to another page after 5 seconds using JavaScript?
Found at http://www.irt.org
More Info
| Submitted On | |
| By | Found on the Web |
| Level | Unknown |
| User Rating | 4.8 (19 globes from 4 users) |
| Compatibility | |
| Category | Miscellaneous |
| World | Java |
| Archive File |
Source Code
<HEAD>
<SCRIPT LANGUAGE="JavaScript"><!--
setTimeout("top.location.href = 'http://www.somewhere.com/'",5000);
//--></SCRIPT>
</HEAD>