Datepicker onSelect Not Firing

jquery, jquery-ui-datepicker

Solution

Must this code work when select a date:

$("#datepicker").datepicker({
dateFormat: 'dd/mm/yy'}).on("changeDate", function (e) {
alert("Working");});

Problem

I have a date picker but `onClose` and `onSelect` will not fire. The code is in `document.ready` so i know its initialized. ``` $('#DateRangeTo').datepicker({ beforeShow: function (input, inst) { inst.dpDiv.css({ marginTop: -input.offsetHeight + 'px', marginLeft: input.offsetWidth + 'px' }); }, format: "dd/mm/yyyy", startView: 1, //daysOfWeekDisabled: "3,4", autoclose: true, todayHighlight: true, //onClose: function (dateText, inst) { alert("here"); } onSelect: function (dateText, inst) { alert("Working"); }, onClose: function (date) { var dt = new Date(date); alert(dt.getMonth()); } }); ```

Original source