More work on the digital clock code! Duluth MN

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

Local Companies

Integrated Data Systems
(218) 728-4114
1 E Calvary Rd
Duluth, MN
Appli -Tech
(612) 374-1609
2523 Wayzata Blvd
Minneapolis, MN
Ubiq Inc
(952) 912-9400
10925 Bren Rd E
Hopkins, MN
Intermedia Communications
(952) 857-1600
3800 American Blvd W
Bloomington, MN
Great Northern Services Inc
(218) 722-8231
394 S Lake Ave Ste 320A
Duluth, MN
Swat Solutions Inc
(763) 550-0200
10700 Highway 55 Ste 310
Minneapolis, MN
Genesis 10
(651) 702-1285
7650 Currell Blvd
Saint Paul, MN
J & L Consulting
(507) 433-5224
58612 221st St
Austin, MN
Spires Office Solutions Inc
(651) 554-9369
2233 University Ave W
Saint Paul, MN

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

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