html - Can I set values onto the days in Jquery UI datepicker? -
for example, want put 100 1st of january, , want check if has exceeded maximum number allowed each dates, possible?
if so, how can done, if not, there other datepickers allows want achieve?
you can use setdate method;
example:
var date = $(this).datepicker('getdate'); date.setdate(date.getdate() +100); $(this).datepicker('setdate', date);
Comments
Post a Comment