More work on the digital clock code! Tahlequah OK

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

Local Companies

Think Venture Group
(405) 418-4422
2828 NW 57th St
Oklahoma City, OK
Consulting Services Incorporated
(405) 329-4274
710 Asp Ave Ste 308
Norman, OK
Data Dynamics Inc
(918) 250-1548
Broken Arrow, OK
Catch21 Inc
(405) 701-8111
1818 W Lindsey St Ste B101
Norman, OK
Scientific Computer Applications Inc
(918) 293-0306
2815 E Skelly Dr
Tulsa, OK
Baumunk Douglas
(918) 477-7200
4556 E 85th St
Tulsa, OK
Diversified Systems Resources
(918) 584-4859
427 S Boston Ave
Tulsa, OK
Covenant Technology
(918) 486-8131
14373 S 241st East Ave
Coweta, OK
Gehr Innovation Company
(405) 359-5875
1109 Kingston Blvd
Edmond, OK
Springpoint Technologies
(918) 584-3300
5314 S Yale Ave Ste 600
Tulsa, OK

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

Computer Software Solutions

918-627-1117
9717 E 42nd St
Tulsa, OK


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