»
EnglishFrenchVietnamese

Print - Current Time in Textbox - JavaScriptBank.com

Full version: jsB@nk » Time » Clock » Current Time in Textbox
URL: https://www.javascriptbank.com/current-time-in-textbox.html

Current Time in Textbox © JavaScriptBank.comUse JavaScript to put the current time on your page. It even follows the time in A.M. and P.M.! A nice script.

Full version: jsB@nk » Time » Clock » Current Time in Textbox
URL: https://www.javascriptbank.com/current-time-in-textbox.html



JavaScript
<script language="JavaScript"><!-- Beginvar timerID = null;var timerRunning = false;function stopclock (){if(timerRunning)clearTimeout(timerID);timerRunning = false;}function showtime () {var now = new Date();var hours = now.getHours();var minutes = now.getMinutes();var seconds = now.getSeconds()var timeValue = "" + ((hours >12) ? hours -12 :hours)if (timeValue == "0") timeValue = 12;timeValue += ((minutes < 10) ? ":0" : ":") + minutestimeValue += ((seconds < 10) ? ":0" : ":") + secondstimeValue += (hours >= 12) ? " P.M." : " A.M."document.clock.face.value = timeValue;timerID = setTimeout("showtime()",1000);timerRunning = true;}function startclock() {stopclock();showtime();}// End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="startclock()"><FORM name="clock"><input type="text" name="face" size=13 value=""></FORM></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->