Hi,
I get this error when i try to use date picker in my page:
TypeError: (intermediate value).zeroTime is not a function
[Break On This Error]
this.startDate = (new Date()).zeroTime();
It is err in jquery.datePicker.js file in this method:
setStartDate: function (d) {
if (d) {
if (d instanceof Date) {
this.startDate = d;
} else {
this.startDate = Date.fromString(d);
}
}
if (!this.startDate) {
this.startDate = (new Date()).zeroTime();
}
this.setDisplayedMonth(this.displayedMonth, this.displayedYear);
},
Original issue reported on code.google.com by pradhan....@gmail.com on 26 Mar 2013 at 6:04
Original issue reported on code.google.com by
pradhan....@gmail.com
on 26 Mar 2013 at 6:04