Posts Tagged ‘jQuery UI’

jQuery UI: Datepicker for birth date input July 11, 2009 No Comments

I decided to use jQuery UI Datepicker control for one of project and faced with the some strange behavior. At first, I decided to find a way to select month and year quickly because switching months with previous button will unhappy every user. So I’ve added the following options:

$(‘#datepicker’).datepicker({
    changeMonth: true,
    changeYear: true
});

Well [...]