How to set a default date in Bootstrap Datepicker?
I want to set a date : 24/12/2006
When I open datepicker it should show me this date select on calender.
Code:
$(function()
{
$('#dob').datepicker(
{
<!--viewMode: "years",-->
onRender: function(date)
{
//return date.valueOf() > now.valueOf() ? 'disabled' : '';
}
}
);
});
Here is a fiddle: