I use a datepicker for choosing an appointment day. I already set the date range to be only for the next month. That works fine. I want to exclude Saturdays and Sundays f
For Saturday and Sunday You can do something like this
$('#orderdate').datepicker({ daysOfWeekDisabled: [0,6] });