Back to Index
JavaScript Examples Changing Background Colours Mortgage Calculator Carbon Dating Calculator Let The Banners Fly! Online Quiz Popup Windows A Simple MouseOver (Rollover) Script Password Days Till 2001 There are still Days till The Year 2001! <html> <head> <title>Millenium Countdown</title> </head> <body> <center> <H2>Days Till 2001</H2> <SCRIPT LANGUAGE="JavaScript"> <!-- var timerID = null; var timerRunning = false; function stopclock() { if(timerRunning) clearTimeout(timerID); timerRunning = false; } function startclock() { stopclock(); showtime(); } function showtime () { today = new Date() newcent = new Date(2001,00,01,0,0,0) msPerDay = 24 * 60 * 1000 * 60; dayLeft =(newcent.getTime() - today.getTime()) / msPerDay; document.clock.face.value = dayLeft; timerID = setTimeout("showtime()",100); timerRunning = true; } // --> </SCRIPT> <table> <td align=left valign=top width=150> <b>There are still <form name='clock' onSubmit='0'> <input type='text' name='face' size=14 value=''> <br><br>Days till <br><br> The Year 2001! </b> </td> </table> </body> </html>