Just wondering if there was a way to check the current date and time in Jquery.
|
In JavaScript you can get the current date and time using the Date object;
This will get the local client machine time, if you want to do timezone adjustments or get the time from a server, check my answer to this question. Edit: In response to your comment, you can retrieve your server time to the client side very easily: time.php:
A simple JSON string is created, with a new Date object initialized with the current server time, this value is multiplied by 1000, because PHP handles timestamps in seconds, and JavaScript does it in milliseconds. And on your other you can get the server time like this:
Just make a getJSON request to retrieve the date from time.php, and access to the serverTime property of the returned object. |
|||||||||||
|
|
Its not a god practice to get the current date and time from the client machine. Make this check a server side one. You can use jQuery to make an Ajax request to a page and then return the current date and time. |
|||
|
|
To clarify the answers provided so far...
UPDATE: There is also a need to distinguish between obtaining the date/time statically and dynamically. Statically is when the server renders the time/date into the page directly - for example, you may want to have a 'This page was generated at 12:34 GMT on July 24th 1962' (Which would be a neat trick, considering that web servers didn't exist in 1962). Dynamically is when the client page actively updated the time display by using AJAX calls to ask the server for the curent time - this is the method being described in the response provided by @CMS |
||||
|
|