Event fires when the calendar is closed.
Parameters
Name | Type | Description |
---|---|---|
e | {object} | event data |
Examples
sample
<input id="datepicker" width="312" />
<script>
$('#datepicker').datepicker({
modal: true,
close: function (e) {
alert('Close is fired.');
}
});
</script>