Best Download Sites Login
Site Login

Time In Words

Description
If your page requires a more sophisticated way to display the time, you will love this script. It will write in the format, 'XX Till Hour'. It is ten past three in the afternoon, for example....View A Script Demo


Do you find it confusing setting up these script?
Java Scripts Magic can do all the hard work for you all At The Touch Of A Button.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>

<META NAME="Generator" CONTENT="TextPad 4.4">
<LINK href="general.css" rel="stylesheet" type="text/css">
<SCRIPT LANGUAGE="JavaScript">
<!-- Original:  Ronnie T. Moore -->
<!-- Web Site:  The JavaScript Source -->
<!-- Begin
function doFormalTime() {
var myTime = new Date();
var myHour = myTime.getHours();
var myMinutes = myTime.getMinutes();
var ampm = " in the morning.";

if (myHour >= 12) {
myHour -= 12; // change to PM
ampm = "pm";
}
Hour = new Array(
"One", "Two", "Three", "Four",
"Five", "Six", "Seven", "Eight",
"Nine", "Ten", "Eleven", "Twelve");

// gets nearest 5 minutes
myMin = myMinutes - (myMinutes % 5);
// closer to next 5 minutes, go to next
if (myMinutes % 5 > 2) myMin += 5;

var text = "It is now about ";

switch(myMin) {
case 0 : myHour--; break;
case 5 : text += "five after "; myHour--; break;
case 10 : text += "ten after "; myHour--; break;
case 15 : text += "quarter after "; myHour--; break;
case 20 : text += "twenty after "; myHour--; break;
case 25 : text += "twenty-five after "; myHour--; break;
case 30 : text += "half past "; myHour--; break;
case 35 : text += "twenty-five till "; break;
case 40 : text += "twenty till  "; break;
case 45 : text += "quarter till "; break;
case 50 : text += "ten till "; break;
case 55 : text += "five till "; break;
case 60 : break;
}
if (myHour < 1) myHour++; // fix for noon/midnight
if (ampm == "pm") {
ampm = (myHour >= 4) ? " in the evening." : " in the afternoon.";
}
text += Hour[myHour] + ampm;
return text;
}
//  End -->
</script>

</HEAD>

<BODY Background=../graphics/grayback.jpg>
<center><BR><BR><BR>
<script>
document.write(doFormalTime());
</script>

</center>
</BODY>
</HTML>
 

Business Proposal If you have a Business Proposal that you think may be of interest to us here at Best Download Sites please contact us to discuss the matter in further detail