hi,
i have a simple form and bootstrap datepicker is showing in the middle of input.
The code is something like this:
<form>
<div class="form-group">
<label for="birthday" class="control-label">Birthday</label>
<input type="date" id="birthday" name="birthday" class="form-control" />
</div></form>
js code is:
$('#
birthday').datepicker({
format: 'yyyy-mm-dd',
endDate: '0'
});
i attached a picture of the result, and i'm using bootstrap 3.3.4 and jquery 1.11.3
with the Stefan Petre's original code the position of datepicker just works fine.
i would appreciate a solution,
thank you