How can i possible not to show the year entry on jquery Ui datepicker. now its show as Oct 2010, but i just need Oct.
is it possible??
How can i possible not to show the year entry on jquery Ui datepicker. now its show as Oct 2010, but i just need Oct.
is it possible??
Just remove it via CSS, it's probably the simplest solution.
.ui-datepicker-year {
display: none;
}
Tested and works.
If you want the year to be seen, but not selectable, you can do something like this:
$( "#datepicker" ).datepicker({
changeMonth: true,
changeYear: false
});