More work on the digital clock code! New Mexico

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

Local Companies

Moose Cash Register Inc
505-237-9900
7806 Menaul Blvd NE
Albuquerque, NM
Pod Inc
505-243-2287
5951 Jefferson St NE
Albuquerque, NM
Lisle Computer Corporation
505-296-5358
3818 Bonnie Ann CT NE
Albuquerque, NM
Portalsoft Technologies
505-888-0819
3737 Princeton DR NE
Albuquerque, NM
Progressive Computing Solutions
505-255-7705
1919 Alvarado DR NE
Albuquerque, NM
Management Sciences Inc
505-255-8611
6022 Constitution Ave NE
Albuquerque, NM
Alliance Networks
505-298-3020
9577 Osuna RD NE
Albuquerque, NM
Ardham Technologies Inc
505-884-0284
4600 Montgomery Blvd NE
Albuquerque, NM
Nuail Technologes Inc
505-260-4770
615 Wyoming Blvd SE
Albuquerque, NM
Affiliated Computer Services
505-842-5415
1720 Randolph RD SE
Albuquerque, NM

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

Moose Cash Register Inc

505-237-9900
7806 Menaul Blvd NE
Albuquerque, NM

Related Local Event
2010 Winter Electronic Information Systems (EIS) Committee Meeting
Dates: 1/28/2010 - 1/30/2010
Location: Associated Contractors of New Mexico
Albuquerque, NM
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