open

Fires when calendar popup is opened.


<input id="picker" ></input>

<script type="text/javascript">
    $(function () {
        $("#picker").shieldMonthYearPicker({
            events: {
                open: function(e) {
                    alert("Calendar is opened");
                }
            }
        });
    });
</script>