README.md

December 5, 2022 · View on GitHub

Redirect after X seconds «VERY SIMPLE»

Description

This code is very simple to understand, implement, and use. I was browsing this website when I found this code (http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=91&lngWId=2). My next tought was how could I apply that to a normal redirection? It's simple check this out..

More Info

Submitted On
ByJo B
LevelBeginner
User Rating5.0 (25 globes from 5 users)
Compatibility
CategoryInternet/ Browsers/ HTML
WorldJava
Archive File

Source Code

...
<form action="http://www.planetsourcecode.com" name="myform"></form>
<script language="Javascript">
setTimeout('document.myform.submit()',5000);
</script>
...
(Note: 5000 = 5 seconds)