More work on the digital clock code! Nebraska

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

Local Companies

X Net Software Solutions
(402) 991-6880
15715 William Ct
Omaha, NE
Intergrated Distribution Solutions
(402) 397-8757
2110 S 169th Plz
Omaha, NE
Centrix Solutions Inc
402-488-3990
4910 Normal Blvd
Lincoln, NE
Materials Systems Software Inc
402-327-8456
245 S 84th St
Lincoln, NE
Mortech Software
402-441-4647
5960 S 57th St
Lincoln, NE
Meta Software
(402) 932-1523
319 S 17th St
Omaha, NE
Tailored Software Services Inc
402-423-1490
2410 Bretigne DR
Lincoln, NE
Turnkey Solutions
402-332-5600
13908 S 226th Ave
Lincoln, NE
All Needs Computer Consulting Services Inc
402-421-3020
8100 S 13th St
Lincoln, NE
Goldengate Software
(402) 778-5028
12020 Shamrock Plz
Omaha, NE

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

X Net Software Solutions

(402) 991-6880
15715 William Ct
Omaha, NE

Related Local Events
Heartland Developers Conference
Dates: 10/15/2009 - 10/15/2009
Location: Qwest Center Omaha
Omaha, NE
View Details

Heartland Developers Conference
Dates: 10/15/2009 - 10/15/2009
Location: Qwest Center Omaha
Omaha, NE
View Details

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