0
I would like to add two events like, Alert (onclick) and on mouseover, specifically to the fields of disabled dates, datesDisabled.
The structure of my Datepicker is functional, I will show here the script:
<script type="text/javascript">
$('#date,#date2').datepicker({
format: "dd/mm/yyyy",
language: "pt-BR",
keyboardNavigation: false,
forceParse: false,
autoclose: true,
startDate: '+0d',
datesDisabled: ['25/04/2019', '29/04/2019']
});
</script>