I'm working with http://eonasdan.github.io/bootstrap-datetimepicker/. If you open https://jsfiddle.net/Eonasdan/0Ltv25o8/ you see that the initial date is empty and only fills on clicking on the widget (also see screenshot ). This is the behaviour I want.
In my setup the default is set to the current date.
</div>
<script type="text/javascript">
$(function () {
$('#datetimepicker5').datetimepicker({
enabledHours: [ 12,19,20,21 ],
stepping:15,
sideBySide: true,
defaultDate:false
});
});
</script>
I've tried defaultDate:false, but the current date still shows up. How can I fix this?