xdate icon indicating copy to clipboard operation
xdate copied to clipboard

How to use a client's machine Date Time Object instead of GMT +0

Open razam217 opened this issue 10 years ago • 1 comments

Whenever I try to convert the date string, it changes the time from GMT+5 (Pakistan Time) to GMT+0, how can I disable this functionality, so that it wouldn't change the time before and after the conversion.

This date: Sun Jan 25 2015 00:40:00 GMT+0500 (Pakistan Standard Time) Sun Jan 25 2015 01:35:00 GMT+0500 (Pakistan Standard Time)

is converted to this date: 2015-01-24T20:35:00.000Z 2015-01-24T19:40:00.000Z

razam217 avatar Jan 21 '15 09:01 razam217

@razam217 , About the toJSON, The timezone is always zero UTC offset, as denoted by the suffix "Z". as metioned here https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString

Maybe this one could help: https://github.com/mde/timezone-js

shrekuu avatar Aug 09 '15 08:08 shrekuu