Colleagues,
How do I make the datePicker the current date be checked and change the previous dates that are disabled? See:
Iwasabletodisablethepreviousdatesusingthecodebelow,buttheyturnblackandconfuseandthecurrentdateisnotmarked.
<!--datepicker--><scriptsrc="plugins/datepicker/bootstrap-datepicker.js"></script>
<script>
//Date picker
$('#datepicker').datepicker({
autoclose: true,
startDate: "date"
});
</script>