max

Specifies the end value in the popup list. This property type is Date and the default value is new Date(1900, 0, 1, 0, 0, 0).

Note that the date part is ignored.


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

<script type="text/javascript">
    $(function () {
        $("#picker").shieldTimePicker({
            max: new Date(2030, 0, 1)
        });
    });
</script>