I am using a Jquery ui datepicker as follows:
<input type="text" name="StartDate" id="StartDate" class="date-picker" />
<input type="text" name="FinishDate" id="FinishDate" class="date-picker" />
in my JS
$(".date-picker").datepicker({
onSelect: function (date) {
alert("selected!");
}
});
Is there a way to detect when the user left the datepicker empty similar to the way selection is detected as above?