Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable specific days of the week on jQuery UI datepicker [duplicate]

Possible Duplicate:
Can the jQuery UI Datepicker be made to disable Saturdays and Sundays (and holidays)?

I would like to disable certain days like every monday or every tuesday or every monday, thursday friday, etc. on a jQuery UI datepicker.

I tried to play with beforeShowDay, but that requires a specific date. I just want to disable an entire day of the week.

Update: Thanks for the suggested solutions, but they all work for specific dates. What if I wanted to disable every single Monday and Tuesday for the entire year. How would I do that?

like image 991
Amir Avatar asked Jun 03 '10 17:06

Amir


1 Answers

You can ue the beforeShowDate option of the datepicker combined with Date.getDay() to do what you want, like this:

​$("#datepicker").datepicker({     beforeShowDay: function(date) {         var day = date.getDay();         return [(day != 1 && day != 2)];     } })​​​​​;​ 

You can see a working demo here, this just takes the date, checks if it's a Monday (1) or Tuesday (2) and returns false for the first array entry if that's the case.

like image 114
Nick Craver Avatar answered Sep 20 '22 14:09

Nick Craver