Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
I'm figting the same problem now. Here is an interesting approach. – Tamas Pap Aug 14 '12 at 14:20

5 Answers

up vote 41 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).

share|improve this answer
2  
From what I can read from here , Date.prototype.getTimezoneOffset implementation is kinda buggy (I don't know how much buggy)... Here is why such libraries exist: jsTimezoneDetect which returns a timezone key, to be compared with the Tz database in order to get the offset. – abernier Nov 19 '12 at 22:13
1  
Server-side: github.com/TooTallNate/node-time – abernier Nov 19 '12 at 23:00

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(parseInt(Math.abs(offset/60)), 2)+
          pad(Math.abs(offset%60), 2))
share|improve this answer
You need to replace 1st padding with pad(parseInt(Math.abs(offset/60)), 2) to get it right... else you might end up getting +5.530 as in my case... i m not sure if math floor etc will be a better thing here or not.... but this atleast gives me +0530 as expected – Abhinav Singh Jun 30 '12 at 16:16
@AbhinavSingh thanks, fixed – cryo Jul 1 '12 at 5:07

Timezone detection that returns the standard timezone name such as America/Chicago.

Source(MIT License)

share|improve this answer
Though this answer is slightly off question, getting standard timezone names is a much more directly for my application. Thanks! – John Larson Oct 19 '12 at 14:53

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.

share|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
There is a typo - should be .getTimezoneOffset() not .getTimeZoneOffset() This will raise error at least on chrome. – aabele Mar 28 at 9:47

I realize this answer is a bit off topic but I also realize most of us looking for an answer were also looking for a way to format the time zone for display and perhaps get the zone abbreviation too. So here it goes...

If you want the client timezone nicely formatted you can rely on the javascript Date.toString method and do:

var split = new Date().toString().split(" ");
var timeZoneFormatted = split[split.length - 2] + " " + split[split.length - 1];

This will give you "GMT-0500 (EST)" for example. It will also show the timezone minutes when applicable.

Date.toString reference: http://www.w3schools.com/jsref/jsref_tostring_date.asp

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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