HTML
xxxxxxxxxx
1
<div class="md-form">
2
<input placeholder="Selected date" type="text" id="date-picker-example" class="form-control datepicker">
3
<label for="date-picker-example">Try me...</label>
4
</div>
CSS
1
1
JS
xxxxxxxxxx
1
$('.datepicker').pickadate({
2
weekdaysShort: ['Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'],
3
showMonthsShort: false,
4
selectYears: false,
5
selectMonths: false,
6
today:'',
7
clear:'',
8
close:''
9
})
Console errors: 0