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
Insert changeYear: true on your DataPicker parameter.
changeYear: true
Example :
$(function() { $( ".datepicker" ).datepicker({ changeMonth: true, changeYear: true }); });