On the Foundation-datepicker plugin (not related to ZURB), is it possible to show week day name in three character (MON, TUE, WED etc.) in foundation datepicker? (source code on github)
I mean, instead of: MO TU WE TH FR SA SU
Show these: MON TUE WED THU FRI SAT SUN.
<script>
$(function(){
$('#dpt').fdatepicker({
format: 'mm-dd-yyyy hh:ii'
});
});
</script>