More work on the digital clock code! Clarksville TN

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

Local Companies

E Spectrum Inc
(931) 553-0025
30 Crossland Ave Ste 207
Clarksville, TN
Niteowl Computing
(865) 429-1181
1909 Upper Middle Creek R
Sevierville, TN
J2 Technologies Inc
(901) 881-6789
5100 Poplar Ave Ste 620
Memphis, TN
Fidata
(615) 790-0026
233 Bedford Way
Franklin, TN
Hitech Data
(901) 323-3767
3251 Poplar Ave
Memphis, TN
Stone Rudolph Henry CPA
(931) 648-4786
124 Center Pointe Dr
Clarksville, TN
Milliennium Systems Management
(901) 853-4900
81 Peyton Pkwy
Collierville, TN
Sim & S Inc
(931) 454-0833
400 N Atlantic St
Tullahoma, TN
Computer Software Specialists
(615) 382-0600
2549 Ewell Elliott Rd
Springfield, TN
Parsons Roger
(423) 745-2782
110 1/2 E Washington Ave
Athens, TN

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

Featured Local Company

C M S Manufacturing Systems

615-662-3102
131 Belle Forest Cir
Nashville, TN


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