How can i generate Month name (e.g: Oct/October) from this date object in JavaScript?
var objDate = new Date("10/11/2009");
|
How can i generate Month name (e.g: Oct/October) from this date object in JavaScript?
|
||||
|
|
|
Shorter version:
|
|||||||||||||||
|
|
Here's another one, with support for localization :)
you can then easily add support for other languages:
edit: nickf was faster :) |
||||
|
|
|
If you don't mind extending the Date prototype (and there are some good reasons to not want to do this), you can actually come up with a very easy method:
These functions will then apply to all javascript Date objects. |
|||||||||
|
|
You might use datejs to do that. Check the FormatSpecifiers, MMMM gives you the month's name:
And datejs got that localized for more than 150 locales! See here |
||||
|
|
|
|||
|
|
|
Store the names in a array and look up by the index of the month.
|
|||
|
|
|
There's a really useful date bolt-on here: http://code.google.com/p/jqueryjs/source/browse/trunk/plugins/methods/date.js?r=6305 This extends the built-in Date class with methods such as getMonthName() etc.. |
|||
|
|
|
I heartily recommend
In addition to a lengthy list of other features, it has strong support for internationalization. |
||||
|
|
|
Here is a neat method (Ref: http://www.java2s.com/Tutorial/JavaScript/0240__Date/TranslatetheDategetMonthtomonthname.htm )
|
|||
|
|
|
I have a partial solution that I came up with. It uses a regular expression to extract the month and day name. But as I look through the Region and Language options (Windows) I realize that different cultures have different format order... maybe a better regular expression pattern could be useful.
|
|||||
|
|
Just extending on the many other excellent answers - if you are using jQuery - you could just do something like
where |
|||
|
|