I am using the following javascript code:
var d = Date.parseExact('Jun 4, 2012 12:30:00 AM','MMM d, yyyy h:mm:ss tt');
alert(d.toString('MMM d, yyyy h:mm:ss tt'));
the result of the alert is:
Jun 4, 2012 12:30:00 PM
seems like Date.js doesn't really care about my 'tt' format.... is it a bug??
Thanks.
Not sure if this will apply to you, but I found this today.
As it turns out, the
.js
file available for download on the main site is a bit out of date. Updating to the version mentioned in this issue fixed a similar issue for me.