Sunday 6 July 2014

How to get local time in your website?

How to get the local time in my website using java script ?

Ans:

I am just giving you the code

<html>
<head>
<title>Sacredbar</title>
<script type="text/javascript">
function display_c(){
var refresh=1000; // Refresh rate in milli seconds
mytime=setTimeout('display_ct()',refresh)
}

function display_ct() {
var strcount
var x = new Date()
document.getElementById('ct').innerHTML = x;
tt=display_c();
 }
</script>
</head>

<body onload=display_ct();>
<span id='ct' ></span>

</body>
</html>

Here we use a setTimeout function which i have set for 1000milisec(1 sec).
The time will automatically refresh after 1000 milisec