Page

Program to watch time at title bar in java script

<html>
<head><center><h1>watch time at title bar</h1></center>
<title>date function</title>
<script type="text/javascript">
function disp_time()
{
d=new Date();
hr=d.getHours();
mn=d.getMinutes();
sc=d.getSeconds();
document.write("date :"+d.getDate()+"<br>");
document.write("time :"+hr+":"+mn+":"+sc);
}
</script>
</head>
<body onclick="disp_time()">
</html>

No comments:

Post a Comment