[HTML/JS] Redirect timer

Junior Spellweaver
Joined
Jul 6, 2008
Messages
173
Reaction score
2
I want sumthing that shows a timer for lets say 30 seconds.
And counts down to 0

After that it will redirect the current page to a new page.
For like ads ect

- Pelase Help
 
Fixed title, be sure to add proper tags next time.
 
your looking for a META redirect.

try this:
Code:
<meta http-equiv="refresh" content="[COLOR="DarkRed"]1[/COLOR];URL=[COLOR="darkred"]http://EXAMPLE.COM/[/COLOR]" />
Change the things in red to fit your situation.

the number 1 is the time it takes to refresh, practice changing this to 30.

change example.com to your website.

Hope this helps!
 
Back