I am using the Bootstrap 3 Datepicker plugin. When the user chooses a date, I want to update various parts of my UI. I'm basically trying to create a function that is called when the date changes. However, I've been unsuccessful in my attempts. Currently, I'm trying the following
$('#myDatePicker').datetimepicker({
change: function() {
alert('date has changed!');
}
});
Unfortunately, the change
function never fires. How do I call a function when the date is changed in the date picker?