I asked a pretty similar question a few days ago, but this one is different enough that I didn\'t feel like derailing the other helpful topic. I basically want to set up two
onSelect: function(dateText, inst) { try { var date = $.datepicker.parseDate("dd/mm/yy", dateText); if (date) { date.setDate(date.getDate() + 1); $("#secondDatePicker").datepicker("setDate", date); } } catch(e) {} }