I have a very simple setup which is surprisingly not working:
HTML
<input type="text" value="08/03/2016" class="datepicker" />
JS
$(document).ready(function() {
$('.datepicker').datepicker({
setDate: "08/03/2016"
});
});
No matter if having input-value set or not, its always showing up October 2015 on open. Why so?