News:

Choose a design and let our professionals help you build a successful website   - ITAcumens

Main Menu

Upper Corner Live Clock - Java Script

Started by ganeshbala, Apr 11, 2009, 12:26 PM

Previous topic - Next topic

ganeshbala

Upper Corner Live Clock  - Java Script

A live clock that displays itself in the upper left corner of the screen. Requires NS 4  or IE 4 . All other browsers will simply see nothing.

<span id="liveclock" style="position:absolute;left:0;top:0;">
</span>

<script language="JavaScript">
<!--

/*
Upper Corner Live clock script credit: JavaScript Kit ([url=http://www.javascriptkit.com]www.javascriptkit.com[/url])
More free scripts here!
*/

function show5(){
if (!document.layers&&!document.all&&!document.getElementById)
return

var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()

var dn="PM"
if (hours<12)
dn="AM"
if (hours>12)
hours=hours-12
if (hours==0)
hours=12

if (minutes<=9)
minutes="0" minutes
if (seconds<=9)
seconds="0" seconds
//change font size here to your desire
myclock="<b>Current Time:</br>" hours ":" minutes ":"
  seconds " " dn "</b>"
if (document.layers){
document.layers.liveclock.document.write(myclock)
document.layers.liveclock.document.close()
}
else if (document.all)
liveclock.innerHTML=myclock
else if (document.getElementById)
document.getElementById("liveclock").innerHTML=myclock
setTimeout("show5()",1000)
}


window.onload=show5
//-->
</script>

<p align="center">This free script provided by<br />
<a href="http://javascriptkit.com">JavaScript
Kit</a></p>