I need to change the month names from short names to long names in my jQuery UI datepicker.
My properties are:
$.datepicker.regional[\'d
Use the property monthNamesShort
and attribute it the names you want.
In my case, I wanted to show, in the month drop-down, the month long name, in portuguese:
monthNamesShort: [ "Janeiro", "Fevereiro", "Março", "Abril",
"Maio", "Junho", "Julho", "Agosto", "Setembro",
"Outubro", "Novembro", "Dezembro" ]