Re[3]: Not selectable dates
2008/02/13 02:46
Viewed 13313 times
Replies: 0/0
Remember that when constructing a new Date() object, the month parameter is the INDEX of the month: 0 = January, 1 = February.... If you're trying to set the date "April 3, 2007", you need to construct it as: new Date(2007,3,3). Or pass it as a formal string: new Date("April 3, 2007");
Google