Currently, I am utilizing a datepicker tool from jQuery UI and adjusting its CSS to suit my requirements. My goal now is to hide any dates that are not currently active, specifically those displayed from other months. I am unsure if this can be achieved using CSS alone or if I need to incorporate jQuery into the solution. To provide more clarity on what I'm trying to accomplish, please refer to this visual representation: IMAGE. Below is the jQuery code snippet I am currently working with:
$(function(){
$('#datepicker').datepicker({
inline: true,
showOtherMonths: true,
dayNamesMin: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
});
});