How can I gather the visitor's time zone information? I need the GMT offset hours.
|
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). |
|||||||||
|
|
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.
|
|||||
|
|
Timezone detection that returns the standard timezone name such as America/Chicago. Source(MIT License) |
|||
|
|
try
this method return time zone offset in minutes which is the difference between GMT and local time. |
||||
|
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:
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 |
||||
|
|