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.
Above accepted solution is staled, To help others who has the newest files, if you have Version 4 or newer, and you want to call a method, here is an example for bootstrap datetimepicker method :
$('#eventDate').data("DateTimePicker").date(moment(date).format('YYYY-MM-DD'));
bootstrap.datetimepicker format Option sample :
$('#eventDate').datetimepicker({ format: 'YYYY-MM-DD' });
for more see here (but without valid sample :) ): http://eonasdan.github.io/bootstrap-datetimepicker/Options/