I can't get it to accept an input, it's just going to the default of mm/dd/yyyy.
$('.customDate').datepicker({ dateFormat: 'dd-mm-yy' }).mask('99/99/9999');
I've tried 'dd-mm-yy' and 'dd-mm-yyyy' with no luck. I've read the documentation.
There are elements with the given class, I checked. The mask is working. All files are present.
That line is the last line in my:
$(document).ready(function () {
});