Countdown Clock

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi: I am looking for a countdown clock that, after a certain time, will
redirect to a new url. Is it possible and where can one get it?
Thanks,
Hopeless
 
I presume you mean a visible clock that displays a visible number of seconds:
5, 4, 3, 2, 1, redirect or whatever. If so, search google for

countdown clock javascript

and choose one of the billions of choices.

Jim Buyens
Microsoft MVP
http://www.interlacken.com
Author of:
*-----------------------------­-----------------------
|\----------------------------­-----------------------
|| Microsoft Windows SharePoint Services Inside Out
|| Microsoft Office FrontPage 2003 Inside Out
||----------------------------­-----------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/----------------------------­-----------------------
*-----------------------------­-----------------------
 
In HTML view, paste this into the <head> section
<meta http-equiv="Refresh" content="5; index.htm">
MikeR
 
This doesn't display a countdown. It will redirect to index.htm in 5 seconds. Copy
and paste it into Notepad, then copy and paste it into (in HTML view) the <head>
section of your page.
MikeR
 
You can create an animated GIF of a clock counting down five seconds and
put it on the page with the code below. The clock will count down, and
the code will change to the new URL.
 
Neat idea. I like it!
MikeR
You can create an animated GIF of a clock counting down five seconds and
put it on the page with the code below. The clock will count down, and
the code will change to the new URL.
 
Back
Top