I have an application where i have to submit monthly reports and quarterly reports. I am using the bootstrap-datepicker for the monthly report, and I want to keep the same s
a litte improvement and fix a issue when changing quarter typing in the input.
remove
.on("show", function(event) {
$(".month").each(function(index, element) {
if (index > 3) $(element).hide();
});
});
add css
.datepicker-months table tbody tr td span:nth-child(1n + 5) {
background: red;
display: none;
}