Hmm.. To Tell You the Truth, Not sure what you want :sayno:
As I am unaware of exactly what you wanted, I got the gist of your problem. In this case I have added a live clock using a form.
Here it is:
If that is not what you wanted, please elaborate a little more on your problem. :wink:
Have a fun and computing day,
Grove
As I am unaware of exactly what you wanted, I got the gist of your problem. In this case I have added a live clock using a form.
Here it is:
Code:
<form name="Tick">
<input type="text" size="12" name="Clock">
</form>
<script>
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
//this is so the hours written out is
//in 12-hour format, instead of the default //24-hour format.
}
if (hours==0)
hours=12
//this is so the hours written out
//when hours=0 (meaning 12a.m) is 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>
Have a fun and computing day,
Grove