max

The maximum date, which the calendar can show. The default value is new Date(2099, 11, 31).


<div id="calendar" ></div>

<script type="text/javascript">
    $(function () {
        $("#calendar").shieldCalendar({
            max: new Date(2050, 11, 31)
        });
    });
</script>