From the server I get a datetime variable in this format: 6/29/2011 4:52:48 PM and it is in UTC time. I want to convert it to the current user's browser time using JavaScript.
How this can be done using JavaScript or jQuery?
|
From the server I get a datetime variable in this format: How this can be done using JavaScript or jQuery? |
||||
|
|
Append 'UTC' to the string before converting it to a date in javascript:
|
|||||
|
|
Put this function in your head:
Then generate the following for each date in the body of your page:
To remove the GMT and time zone, change the following line:
|
|||
|
|
You should get the (UTC) offset (in minutes) of the client:
And then do the correspondent adding or substraction to the time you get from the server. Hope this helps. |
|||
|
|
|
Here is the working solution
|
|||||
|