Skip to content

Instantly share code, notes, and snippets.

@MRdNk
Created March 20, 2013 19:12
Show Gist options
  • Select an option

  • Save MRdNk/5207551 to your computer and use it in GitHub Desktop.

Select an option

Save MRdNk/5207551 to your computer and use it in GitHub Desktop.
JQuery UI DatePicker SetDefaults
(function ($) {
$.datepicker.setDefaults({
regional: 'en-GB',
dateFormat: 'dd/mm/yy',
changeMonth: true,
changeYear: true,
minDate: new Date(),
yearRange: '1900:c'
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment