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

link|improve this question
feedback

3 Answers

up vote 15 down vote accepted
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

Note that not all timezones are offset by whole hours: for example, Newfoundland is UTC minus 3h 30m (leaving Daylight Saving Time out of the equation).

link|improve this answer
feedback

try getTimeZoneOffset() of the Date object:

var curdate = new Date()
var offset = curdate.getTimeZoneOffset()

this method return time zone offset in minutes which is the difference between GMT and local time.

link|improve this answer
+1, but you might want to edit it, getTimeZoneOffset() actually returns the time offset in minutes, not hours. – Andy E Jul 7 '09 at 10:02
updated, thanks very much – dfa Jul 7 '09 at 10:07
feedback

It's already been answered how to get offset in minutes as an integer, but in case anyone wants the local GMT offset as a string e.g. "+1130":

function pad(number, length){
    var str = "" + number
    while (str.length < length) {
        str = '0'+str
    }
    return str
}

var offset = new Date().getTimezoneOffset()
offset = ((offset<0? '+':'-')+ // Note the reversed sign!
          pad(Math.abs(offset/60), 2)+
          pad(Math.abs(offset%60), 2))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.