I am using bootstrap-datepicker from here: https://github.com/eternicode/bootstrap-datepicker
version: 2.3.2
I am having trouble to clear the date values of
I was having similar trouble and the following worked for me:
$('#datepicker').val('').datepicker('update');
Both method calls were needed, otherwise it didn't clear.