Client Time Zone

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
4byte
Forum Newbie
Posts: 1
Joined: Tue Oct 15, 2002 2:48 pm

Client Time Zone

Post by 4byte »

Is there a means of retreiving the Time Zone of a Clients Browser/machine?
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

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
  • 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
Post Reply