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

Tuesday 24 June 2014

How can I gather the visitor's time zone information in GMT offset hours?

Ans:

     var offset = new Date().getTimezoneOffset();
The time-zone offset is the difference, in minutes, between UTC and local time. Note that this means that the offset is positive if the local timezone is behind UTC and negative if it is ahead. For example, if your time zone is UTC+10 (Australian Eastern Standard Time), -600 will be returned. Daylight savings time prevents this value from being a constant even for a given locale