How can I show hidden(disabled) TD elements in standard JQ datepicker?

I have tried this way, but that doesn't work:
$('#datepicker').multiDatesPicker({
dateFormat: 'dd/mm/yy',
onSelect: function(date){
var dates = $('#datepicker').multiDatesPicker('getDates');
$('.ui-state-disabled').empty();
$('.ui-state-disabled').append('<a class="ui-state-default" href="#"> </a>');
}
});
The base jquery ui datepicker has 2 attributes to show dates in other months (showOtherMonths) and allow them to be selected (selectOtherMonths). You should be able to do the same in this extension.
$('#datepicker').multiDatesPicker({
dateFormat: 'dd/mm/yy',
showOtherMonths: true,
selectOtherMonths: true
})
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With