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 know its too late to answer, but in my scenario below code was not working.
$('#datepicker').val("");
$('#datepicker').val('').datepicker('update');
$('#datepicker').datepicker('update','');
here is my solution.
$('#datepicker').val('').datepicker('remove').datepicker();
I did clear datepicker value first then removed datepicker and again reinitialize datepicker. its resolved my problem.