Javascripts > Javascript Clocks > Military to Standard Time Display Script
Script Title: Military to Standard 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.
Example: Available
Credit: Script created by Website Abstraction
Copy the following code between the <BODY></BODY> tags of your html page.<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>
Enter your name and email address to have this script sent right to your Inbox for later viewing. First Name Last Name Email