<script type="text/javascript"> today = new Date(); BigDay = new Date("Month dayofmonth, year"); // Change date to the day you would like to countdown to msPerDay = 24 * 60 * 60 * 1000 ; // Vbs timeLeft = (BigDay.getTime() - today.getTime());// Vbs e_daysLeft = timeLeft / msPerDay;// Vbs daysLeft = Math.floor(e_daysLeft);// Vbs e_hrsLeft = (e_daysLeft - daysLeft)*24;// Vbs hrsLeft = Math.floor(e_hrsLeft);// Vbs minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60);// Vbs document.write("there are only ... the days left will come after this " + daysLeft + " Days " + hrsLeft +" Hours " + minsLeft + " Minutes</H4> Until it is ... your reason of count down like my birthday or ... <P>"); // I started this from something I got from moonfruit.com Credits for them. </script>
Countdown timer / Discussion
This is the discussion related to the wiki page Countdown timer.