I read this (jQuery UI DatePicker to show month year only) and this (How to set date of datepicker that displays Month and Year only) style of .ui-datepicker-calendar
is set to display:none
which is applicable for all pages , however there is single page where user should be able to choose date as well, now if we change the property of .ui-datepicker-calendar
from display:none
to display:table
or display:run-in
then user can select date as well for that page but i am unable to change it dynamically using jquery.
I tried like this
$('.ui-datepicker-calendar').css('display','table');