You might be interested in the Datejs library .
You can easily try by including a datejs script in your HTML file:
<script type="text/javascript"
src="http://datejs.googlecode.com/files/date.js"></script>
Then you can use the method toString()to format the date as needed:
new Date().toString("dddd, MMMM dd, yyyy hh:mm:ss tt");
source
share