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

I am using jQuery Datepicker.

What i want to do is select a delivery date of today, or tomorrow -

1) It is supposed to blank out the next 3 working days ie if I order Monday my earliest delivery date to choose is Friday.

2) Disable December 20th to 27th 2011 as options

3) Weekends has to be disable

4) all UK holidays has to be disabled

Can this be done? If so, how?

link|improve this question

62% accept rate
feedback

closed as exact duplicate by Lightness Races in Orbit, finnw, Tim Post Nov 22 '11 at 6:53

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

The minDate option enables you to select a minimum date.

Computing the next business day is more complicated, especially if you want to factor in regional holidays. That will require some kind of server-side code, since it's impossible to determine programmatically if a holiday is coming up.

However, if it's a short-term solution you need (i.e. just between now and the end of the Christmas shopping season), I would simply hard-code an array of valid business days which can be fed into JavaScript's Date object. Loop through that array, find the first date which is greater than today's date, and add two to the index to get "three business days from now".

link|improve this answer
feedback

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