I'm currently working on a Jquery datepicker where holidays are disabled and all sundays, except for the first one in each month. I have been trying to play around a little with the code, and found out how to disable all sundays and holidays, but i cant figure out how to enable the first sunday of evey month.

Currently my code looks like this:

<script type="text/javascript">
        (function(){

            var natDays = [[12, 24],[12, 25], [1,1], [12, 31]];
            var daysToDisable = [0];
            function nationalDays(date) {
                for (i = 0; i < natDays.length; i++) {
                    if (date.getMonth() == natDays[i][0] - 1
                    && date.getDate() == natDays[i][1]) {
                        return [false, natDays[i][2] + '_day'];
                    }
                }
                for (i = 0; i < daysToDisable.length; i++) {
                    if ($.inArray(day, daysToDisable) != -1) {
                        return [false];
                    }
                }
                return [true];
            }   
            // Datepicker
            $('#datepicker').datepicker({
                inline: true,
                firstDay: 1,
                changeYear: true,
                changeMonth: true,
                beforeShowDay: nationalDays,
            });
        });
</script>
link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Logically, the first Sunday of the month is always on or before the 7th and the second (and subsequent) Sundays are after the 7th.

function nationalDays(date) {
    for (i = 0; i < natDays.length; i++) {
        if (date.getMonth() == natDays[i][0] - 1 && date.getDate() == natDays[i][1]) {
            return [false, natDays[i][2] + '_day'];
        }
    }
    if (date.getDate() > 7 && $.inArray(date.getDay(), daysToDisable) != -1)
        return [false];
    }
    return [true];
}

I would also suggest to change the structure of your natDays array to a flat array in order to speed up lookups. For your class prefixes (which are not set in your example), you can use an extra array with matching indices. Your final function would look like this:

var natDays = ["12-24", "12-25", "1-1", "12-31"];
var classPrefixes = ["", "", "", ""];
var daysToDisable = [0];

function nationalDays(date) {
    var index = $.inArray((date.getMonth() + 1) + "-" + date.getDate(), natDays);
    if (index != -1) {
        return [false, classPrefixes[index] + '_day'];
    }
    if (date.getDate() > 7 && $.inArray(date.getDay(), daysToDisable) != -1)
        return [false];
    }
    return [true];
}
link|improve this answer
For some reason your code did't work out of the box, but I managed to change the structure of natDays. Also i don't know why I did not come across the solution with the first Sunday of each month, it's quite logic! Maybe I was simply to tired after a 20 hours work day :) – Casper O Jul 9 '11 at 7:29
feedback

The method you're looking for is date.getDay(), which will return a number from 0 to 6, with 0 being Sunday.

function nationalDays(date) {
    if(date.getDay() == 0) {
        // do stuff...
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.