min

The minimum date, which the calendar will show. The default value is new Date(1900, 0, 1).


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

<script type="text/javascript">
    $(function () {
        $("#calendar").shieldCalendar({
            min: new Date(1950, 0, 1)
        });
    });
</script>