About This Product
FontsMadeEasy.com
 
Search This Database:
| Over 5000 Free Fonts | Tutorials | Javascript Forum | Other Javascript Resources | Cheat Sheet
Error processing SSI file

Clock Example

Question: How do I write a clock program in JavaScript?

Answer: A simple clock program would retrieve a new Date() every second (or, better yet, several times a second) and then display the time information from the Date() object. The following code displays a clock on the browser's status bar:

function sbClock() {
 self.status=(new Date()).toString().substring(0,19);
 setTimeout("sbClock()",200);
}
sbClock();

BackBack