I am using datepicker of jquery for a field to set date of birth, while default picker is displayed which gives option to scroll to date monthly and sounds tedious. Is there a w
Set changeYear: true, as shown in sample code below:
changeYear: true
$("#birth_date").datepicker({ dateFormat: 'yy-mm-dd', changeMonth: true, changeYear: true, maxDate: '-1D' }, $.datepicker.regional["fr"] );
Refer here for more options: https://jqueryui.com/datepicker/