More work on the digital clock code!

Today we begin playing around with replacing those image tags with the correct numbers, depending on what time it is.

provided by: 
Originally published at Internet.com


Tips...

Last week we learned the NAMEs attached to each of the HTML image tags. Today we begin playing around with replacing those image tags with the correct numbers, depending on what time it is.

Here's the code

The time is grabbed from the user's browser, so there's no need to worry about daylight savings time or time zones. As long as the viewer has his or her browser set correctly, you're good to go. If they don't, well, you can't help that.

Let's start at the top of the script just below the loading loop and code: function clock() { dates=new Date(); hour=dates.getHours(); min=dates.getMinutes(); sec=dates.getSeconds(); if(hour < 12) { amPM=am.src; } if(hour > 11) { amPM=pm.src; hour=hour-12; } if(hour == 0) { hour=12; } if(hour < 10) { document["tensHour"].src="http://www.developer.com/dgtbl.gif"; document["Hour"].src=d[hour].src; } if(hour > 9) { document["tensHour"].src=d[1].src; document["Hour"].src=d[hour-10].src; } if(min < 10) { document["tensMin"].src=d[0].src; } if(min > 9) { document["tensMin"].src=d[parseInt(min/10,10)].src; } document["Min"].src=d[min%10].src; if(sec < 10) { document["tensSec"].src=d[0].src; } if(sec > 9) { document["tensSec"].src=d[parseInt(sec/10,10)].src; } document["Sec"].src=d[sec%10].src; document["amPM"].src=amPM; setTimeout("clock();",100); } ...

Read article at Internet.com site
Regional Articles
- More work on the digital clock code! Alabama
- More work on the digital clock code! Alaska
- More work on the digital clock code! Arizona
- More work on the digital clock code! Arkansas
- More work on the digital clock code! California
- More work on the digital clock code! Colorado
- More work on the digital clock code! Connecticut
- More work on the digital clock code! DC
- More work on the digital clock code! Delaware
- More work on the digital clock code! Florida
- More work on the digital clock code! Georgia
- More work on the digital clock code! Hawaii
- More work on the digital clock code! Idaho
- More work on the digital clock code! Illinois
- More work on the digital clock code! Indiana
- More work on the digital clock code! Iowa
- More work on the digital clock code! Kansas
- More work on the digital clock code! Kentucky
- More work on the digital clock code! Louisiana
- More work on the digital clock code! Maine
- More work on the digital clock code! Maryland
- More work on the digital clock code! Massachusetts
- More work on the digital clock code! Michigan
- More work on the digital clock code! Minnesota
- More work on the digital clock code! Mississippi
- More work on the digital clock code! Missouri
- More work on the digital clock code! Montana
- More work on the digital clock code! Nebraska
- More work on the digital clock code! Nevada
- More work on the digital clock code! New Hampshire
- More work on the digital clock code! New Jersey
- More work on the digital clock code! New Mexico
- More work on the digital clock code! New York
- More work on the digital clock code! North Carolina
- More work on the digital clock code! North Dakota
- More work on the digital clock code! Ohio
- More work on the digital clock code! Oklahoma
- More work on the digital clock code! Oregon
- More work on the digital clock code! Pennsylvania
- More work on the digital clock code! Rhode Island
- More work on the digital clock code! South Carolina
- More work on the digital clock code! South Dakota
- More work on the digital clock code! Tennessee
- More work on the digital clock code! Texas
- More work on the digital clock code! Utah
- More work on the digital clock code! Vermont
- More work on the digital clock code! Virginia
- More work on the digital clock code! Washington
- More work on the digital clock code! West Virginia
- More work on the digital clock code! Wisconsin
- More work on the digital clock code! Wyoming

Rss   Delicious   Digg   Add To My Yahoo   Add To My Google   Bookmark   Search Plugin

Topics:
Architecture & Design Languages & Tools Project Management Web Services
Database Microsoft & .NET Security Wireless
Java Open Source Techniques XML