disableDaysOfWeek : ArrayDefault: undefined

An array that will be used to determine which days of week to be disabled for selection by the widget. The array needs to contains only numbers where 0 is Sunday, 1 is Monday and etc.

Examples

Saturday Sunday

    
 <input id="datepicker" width="312" />
 <script>
    $('#datepicker').datepicker({
        disableDaysOfWeek: [0, 6]
    });
 </script>