I have this script that works, but I need to change the format of the date string to look different. I’m currently getting: Tue Apr 10 2012 22:27:13 GMT-0700 (PDT)
I need the date string to look like this: April 10, 2012 10:28 PM
I also need to change the DIV background thats holding the input forn the date string when the button is clicked.
<form>
<input name="theDate" size="50">
<input type="button" value="Insert date"
onclick="this.form.theDate.value = new Date();">
</form>
Check out moment.js!
Using moment.js…
You can even do it in one line 🙂
So for your input element…
Also, its worth mentioning to checkout date.js. I think the two libraries complement each other.