pickadate.js
pickadate.js copied to clipboard
How do you enable only the first day of each month?
Is this function missing or how do I go about enabling only the 1st day of each month?
@hfrid I'd configure my datepicker as described here
So in your case:
$('.datepicker').pickadate({
disable: [
true,
[2017,1,1],
[2017,2,1],
[2017,3,1],
[2017,4,1],
[2017,5,1],
[2017,6,1],
[2017,7,1],
[2017,8,1],
[2017,9,1],
[2017,10,1],
[2017,11,1],
[2017,12,1]
]
})
well, what about year 2018? it would be nice have some logic to disabling all holiday days in all years.
any update on this?