How to get current date in JavaScript?
|
feedback
|
|
Your question was a little light. It's always best to say hello and explain your question rather then just "how do I do this". After all this is a community. This is why you got such harsh responses. Moving on. Hendrik's answer will work but probabbly isn't what you are looking for. The format is not very usable. I have been having the same issue and have come up with this through a lot of searching.
It's quite complex but it will give you todays date in the format of mm/dd/yyyy. Simply change Hope this helps. | |||||||||
feedback
|
|
Try this -
The result will be like
| |||
|
feedback
|
|
If you want something simple pretty to the end user ...
| ||||
|
feedback
|
protected by casperOne♦ Feb 12 at 7:54
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
var currentTime = new Date();– Hendrik Oct 7 '09 at 11:39