I've implemented the bootstrap datepicker in my project. I have successfully restricted users from selecting dates prior to the current date by setting the minimum date option. However, there's an issue where users cannot easily distinguish between active and disabled dates unless they hover over them.
Is there a way to make the disabled dates fade out so that users can visually see which dates are not selectable?
$('.dueDate').datepicker({
autoclose: true,
startDate: '+0d', // set default to today's date
datesDisabled: ??//How can I set this option
})