I have the following code which only allows users to select Mondays from jquery datepicker.
I want to adapt this to be able to select mondays and thursdays.
Any ideas?
beforeShowDay: function(date){ return [date.getDay() == 1,""]}
|
I have the following code which only allows users to select Mondays from jquery datepicker. I want to adapt this to be able to select mondays and thursdays. Any ideas?
|
|||
|
|
|
You can add an or (
This only incurs the cost of |
|||
|
|
|
try this
|
||||
|
|