More work on the digital clock code! Battle Creek MI

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

Local Companies

Quadsil Inc
(989) 496-1434
210 Arrow Cv
Midland, MI
Conklin Systems
(517) 663-6418
9905 Barnes Rd
Eaton Rapids, MI
Systems & People Inc
(248) 377-1534
100 Engelwood Dr
Lake Orion, MI
Rochester Systems Ltd
(248) 661-2547
Farmington, MI
White Ware Inc
(313) 792-1222
22583 Park St
Dearborn, MI
Dlt Database Designs
(269) 441-4610
64 Michigan Ave W
Battle Creek, MI
Hilgraeve Inc
(734) 243-0576
111 Conant Ave
Monroe, MI
Mustang Computer Specialist
(810) 715-2900
2442 E Maple Ave
Flint, MI
Enterprise USA
(248) 888-1473
32326 Grand River Ave
Farmington, MI
Kunz Leigh & Associates
(248) 559-7910
28081 Southfield Rd
Lathrup Village, MI

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

Mastermind Systems LLC

616-460-8915
3310 Eagle Park DR NE
Grand Rapids, MI


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