I would like to prevent the user from clicking on saturdays/sundays (week-ends) when he selects a date using the jQuery UI datepicker widget.

Is there a way to accomplish this? If not, which are the alternatives ways to accomplish this?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

$("#datepicker").datepicker({ beforeShowDay: $.datepicker.noWeekends });

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.