Client Time Zone
Moderator: General Moderators
Client Time Zone
Is there a means of retreiving the Time Zone of a Clients Browser/machine?
the time zone is not part of the request-data by default
but take a look at http://www.devguru.com/Technologies/ecm ... /date.html
but take a look at http://www.devguru.com/Technologies/ecm ... /date.html
- using javascript you can either
- send the offset to GMT via getTimezoneOffset() within your request client->server
- or send all dates server->client as ...parse('xyz GMT') in an clientside script that uses getTimezoneOffset() to create appropriate time-values in the document