More work on the digital clock code! Osseo MN

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

Local Companies

Acumen Healthcare Solutions
(763) 559-8232
14256 23rd Ave N
Minneapolis, MN
ThoughtWorks, Inc.
763-238-2413
5756 94th Ave. N
Greenfield, MN
Genuine Genuis Solutions
(612) 872-4256
431 Clifton Ave
Minneapolis, MN
Dairyland Healthcare Solutions
(952) 545-6314
1550 Utica Ave S
Minneapolis, MN
Global Software
(612) 305-4472
10 S 5th St
Minneapolis, MN
Church Management Solutions
(763) 566-4212
3300 County Road 10
Minneapolis, MN
Emkat Solutions Inc
(763) 744-1204
3025 Harbor Ln N
Minneapolis, MN
3 Sixty Software, LLC
612-961-0787
4209 Heathcote Rd
Wayzata, MN
Productive Corporation
612.375.0204
510 First Ave North Suite 310
Minneapolis, MN
Adobe Systems Inc
651-766-4700
3900 Northwoods DR
St. 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

Featured Local Company

Church Management Solutions

(763) 566-4212
3300 County Road 10
Minneapolis, MN


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