I'm trying to trigger a Fuel UX datepicker's change event using this JS:
$('#dpFechaDesde').datepicker({
allowPastDates: true
}).on('changed.fu.datepicker', function (event, date) {
alert('hola');
});
For some reason the alert doesn´t show.
For more information see this fiddle.