Answer for "Get month name from Date using JavaScript"
http://stackoverflow.com/questions/1643320/get-month-name-from-date-using-javascript
JavaScript
var objDate = new Date("10/11/2009"),
locale = "en-us",
month = objDate.toLocaleString(locale, { month: "long" });
console.log(month);
alert(month)
// or if you want the shorter date: (also possible to use "narrow" for "O"
console.log(objDate.toLocaleString(locale, { month: "short" }));