<HEAD>
<TITLE>Clock</TITLE>
<SCRIPT>
<!--
function updateTime()
{
var now = new Date();
var time = "" + now.getHours() + ":";
var minute = now.getMinutes();
if (minute < 1Ø)
{
time += "Ø";
}
time += minute + ":";
var second = now.getSeconds();
if (second < 1Ø)
{
time += "Ø";
}
time += second;
window.status = time;
window.setTimeout("updateTime()",1ØØØ);
}
//-->
</SCRIPT>
</HEAD>
<BODY ONLOAD="window.setTimeout('updateTime()',1ØØØ);">
</BODY>
</HTML>
software world tip all about given knowledge and tip share for software language, software programming with various topic in it
Saturday, 16 March 2019
Clocks java script
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment