how can i format a javascript date object to print as "10-Aug-2010"
|
|
Taken from http://www.webdevelopersnotes.com/tips/html/javascript_date_and_time.php3:
You can edit the array to use Jan, Feb, Mar, etc.. |
|||||||||||||||||||
|
|
Use the format prototype below.
The Prototype Library
SOURCE: http://blog.stevenlevithan.com/archives/date-time-format |
|||||
|
|
I think you can just use the Date method formatString: A format string in the same format expected by the strftime() function in C.
References: |
|||||||
|
|
You should give a look at date.js, it adds many convenient helpers for working with dates, eg. in your case:
Getting started: http://www.datejs.com/2007/11/27/getting-started-with-datejs/ |
|||
|
|
|
add jquery ui plugin in your page.
|
||||
|
|
|
Well what I wanted was to convert today date to mysql friendly date string like: 2012-06-23, and to use that string as a parameter in one of my queries. The simple solution I've found is this:
|
|||
|
|
|
The best way to handle date and time in javascript: http://www.datejs.com/2007/11/27/getting-started-with-datejs/ |
|||||
|
|
This library can format the date object and parse the formatted string back to Date object. It uses Java format (SimpleDateFormat class). The name of months and days can be localized. http://www.javascriptsource.com/repository/javascripts/2009/03/880961/JS_Simple_Date_Format.zip Example:
|
|||
|
|
|
|||
|
|
|
Sugar.js has excellent extensions to the Date object, including a Date.format method: http://sugarjs.com/api/Date/format Examples from the doc:
|
|||
|
|
|
Here's is some code I just wrote to handle the date formatting for a project I'm working on. It mimics the PHP date formatting functionality to suit my needs. Feel free to use it, it's just extending the already existing Date() object. This may not be the most elegant solution but it's working for my needs.
|
||||
|
|

