Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created February 15, 2022 16:52
Show Gist options
  • Select an option

  • Save wpflames/df3abf53909f4ce3d01ec7fb9b32f737 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/df3abf53909f4ce3d01ec7fb9b32f737 to your computer and use it in GitHub Desktop.
Disable Weekends and Previous Dates in DatePicker
jQuery(document).ready(function () {
jQuery(".checkout-date-picker").datepicker({
// Disable Weekends
beforeShowDay: jQuery.datepicker.noWeekends,
// Disable Previous Dates
minDate: 0
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment