Nitheesh
Nitheesh

Reputation: 20006

Get correct Date (not system Date) using JavaScript

JavaScript new Date() return the current system date (not the correct date, because I have changed my system date).

So is it possible to get accurate date using JavaScript? If yes, how?

Upvotes: 1

Views: 584

Answers (1)

jarnbjo
jarnbjo

Reputation: 34323

Not on the client, but there are several public web services providing the accurate date and time, e.g:

http://worldtimeapi.org/api/timezone/Europe/Berlin

Replace the timezone "Europe/Berlin" with whatever is appropriate for you.

Upvotes: 1

Related Questions