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