0

I wonder if it is possible to user Jquery ui datepicker to only show the month/year part and not the days.

I know I can get the month and year with changeMonth and changeYear options, but how can I prevent the days from showing at all?

emt14
  • 4,846
  • 7
  • 37
  • 58
  • 2
    See here: http://stackoverflow.com/questions/2208480/jquery-date-picker-to-show-month-year-only – Gerard Sep 27 '11 at 10:42

1 Answers1

1

Try using CSS:

.ui-datepicker-calendar { 
   display: none; 
}
GregL
  • 37,147
  • 8
  • 62
  • 67