Onclick day close bootstrap datepicker

datepicker, javascript, jquery, twitter-bootstrap

Solution

You the auto-close property of the bootstrap date-piker like below

$('#dob').datepicker(
{
    endDate:ageDate,
    autoclose: true
}
);

I have already updated your js-fiddle

Updated fiddle

Problem

I want to close datepicker when click on day. How is this possible in Bootstrap Datepicker? Here is the fiddle: http://jsfiddle.net/kGGCZ/17/ ``` $('#dob').datepicker( { endDate:ageDate } ); ```

Original source