Script Title: Military to AM/PM Time Display Script
Description: This script has a textbox containing the time, and below are two radio buttons allowing you to specify how the time will be displayed. (AM/PM or Military)
Example:
Credit: Script created by Website Abstraction
Download Script: Click here to download a .exe file of this script
<form name="Tick">
<input type="text" size="11" name="Clock">
</form>
<script>
<!--
/*
By George Chiang (WA's JavaScript tutorial)
http://wsabstract.com
*/
function show(){
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="AM"
if (hours>12){
dn="PM"
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
document.Tick.Clock.value=hours+":"+minutes+":"
+seconds+" "+dn
setTimeout("show()",1000)
}
show()
//-->
</script>