I am using a javascript Date class & trying to get the current date using getDate() method. But obviously it is loading system date & time. I am running the code from India but I want to get the date & time of UK using the same method. How can I do that ?
|
If you know the UTC offset then you can pass it and get the time using following function:
|
|||||
|
|
You can use If you wish, you can use |
|||
|
|
|
short answer from client-side: NO, you have to get it from the server side. |
|||||||
|
|
The |
|||
|
|
|
Date.getTimezoneOffset() The getTimezoneOffset() method returns the time difference between Greenwich Mean Time (GMT) and local time, in minutes. For example, If your time zone is GMT+2, -120 will be returned. Note: This method is always used in conjunction with a Date object.
|
|||
|
|
|
If it's really important that you have the correct date and time; it's best to have a service on your server (which you of course have running in UTC) that returns the time. You can then create a new Date on the client and compare the values and if necessary adjust all dates with the offset from the server time. Why do this? I've had bug reports that was hard to reproduce because I could not find the error messages in the server log, until I noticed that the bug report was mailed two days after I'd received it. You can probably trust the browser to correctly handle time-zone conversion when being sent a UTC timestamp, but you obviously cannot trust the users to have their system clock correctly set. (If the users have their timezone incorrectly set too, there is not really any solution; other than printing the current server time in "local" time) |
||||
|
|