More work on the digital clock code! Peru IN

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

Local Companies

Unlimited Technology Solutions
(574) 251-1414
418 W Jefferson Blvd
South Bend, IN
Xcaliber Systems
(812) 442-5544
4954 W Happy Holler Rd
Brazil, IN
F 1 Inc
(219) 548-8665
Valparaiso, IN
Npower Indiana
(317) 396-2848
724 Broad Ripple Ave
Indianapolis, IN
Designs Group
(765) 668-1100
102 E 4th St
Marion, IN
Third Eye Consulting Inc
(317) 823-3686
PO Box 501976
Indianapolis, IN
Comp Net
(708) 331-4630
16924 Langley Ave
Holland, IN
Jws Group
(317) 271-4070
10090 E US Highway 36
Avon, IN
Summit Data Protection Llc
(260) 471-6666
3601 Hobson Rd
Fort Wayne, IN
10 Yes Solutions
(765) 668-1100
102 E 4th St
Marion, IN

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

Advanced Solutions Inc

260-432-9695
7030 Pointe Inverness Way
Fort Wayne, IN


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