Skip to content

Instantly share code, notes, and snippets.

@juarezpaf
Created September 10, 2009 02:11
Show Gist options
  • Save juarezpaf/184244 to your computer and use it in GitHub Desktop.
Save juarezpaf/184244 to your computer and use it in GitHub Desktop.
$("#datepicker").datepicker({
minDate: +5,
maxDate: '+1M +10D',
changeMonth: true,
onSelect: function(dateText, inst){
var the_date = new Date(dateText);
$("#datepicker2").datepicker('option', 'minDate', the_date);
}
});
$("#datepicker2").datepicker(); // add options if you want
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment