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